aboutsummaryrefslogtreecommitdiffstats
path: root/acl.c
diff options
context:
space:
mode:
authortholo <tholo@f38db490-d61c-443f-a65b-d21fe96a405b>2003-10-22 04:09:28 +0000
committertholo <tholo@f38db490-d61c-443f-a65b-d21fe96a405b>2003-10-22 04:09:28 +0000
commitae1b60fa81280f633dc8dd4bd169ef0207c73d87 (patch)
tree9f21f360a6dae25e857f8e05b5843fc0d58bef8f /acl.c
parentf391cc7d03666dd0a7e11d0cedae25b9822a0ef4 (diff)
Route fixes for OpenBSD (bug #415)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1655 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'acl.c')
-rwxr-xr-xacl.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/acl.c b/acl.c
index 399586a84..98e2feab6 100755
--- a/acl.c
+++ b/acl.c
@@ -30,6 +30,7 @@
#include <netinet/ip.h>
#include <sys/ioctl.h>
#ifdef __OpenBSD__
+#include <fcntl.h>
#include <net/route.h>
static ast_mutex_t routeseq_lock = AST_MUTEX_INITIALIZER;
@@ -172,7 +173,7 @@ int ast_ouraddrfor(struct in_addr *them, struct in_addr *us)
char m_space[512];
} m_rtmsg;
char *cp, *p = ast_strdupa(inet_ntoa(*them));
- int i, l, s, seq;
+ int i, l, s, seq, flags;
pid_t pid = getpid();
static int routeseq; /* Protected by "routeseq_lock" mutex */
@@ -197,6 +198,8 @@ int ast_ouraddrfor(struct in_addr *them, struct in_addr *us)
ast_log(LOG_ERROR, "Error opening routing socket\n");
return -1;
}
+ flags = fcntl(s, F_GETFL);
+ fcntl(s, F_SETFL, flags | O_NONBLOCK);
if (write(s, (char *)&m_rtmsg, m_rtmsg.m_rtm.rtm_msglen) < 0) {
ast_log(LOG_ERROR, "Error writing to routing socket: %s\n", strerror(errno));
close(s);
@@ -205,11 +208,13 @@ int ast_ouraddrfor(struct in_addr *them, struct in_addr *us)
do {
l = read(s, (char *)&m_rtmsg, sizeof(m_rtmsg));
} while (l > 0 && (m_rtmsg.m_rtm.rtm_seq != 1 || m_rtmsg.m_rtm.rtm_pid != pid));
- close(s);
if (l < 0) {
- ast_log(LOG_ERROR, "Error reading from routing socket\n");
+ if (errno != EAGAIN)
+ ast_log(LOG_ERROR, "Error reading from routing socket\n");
+ close(s);
return -1;
}
+ close(s);
if (m_rtmsg.m_rtm.rtm_version != RTM_VERSION) {
ast_log(LOG_ERROR, "Unsupported route socket protocol version\n");