summaryrefslogtreecommitdiff
path: root/lib/network.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/network.c')
-rw-r--r--lib/network.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/network.c b/lib/network.c
index e1f733cf..3b296720 100644
--- a/lib/network.c
+++ b/lib/network.c
@@ -21,6 +21,8 @@
*/
#include <zebra.h>
+#include "log.h"
+#include "network.h"
/* Read nbytes from fd and store into ptr. */
int
@@ -69,3 +71,15 @@ writen(int fd, const u_char *ptr, int nbytes)
}
return nbytes - nleft;
}
+
+int
+set_nonblocking(int fd)
+{
+ if (fcntl(fd, F_SETFL, (fcntl(fd, F_GETFL) | O_NONBLOCK)) < 0)
+ {
+ zlog_warn("fcntl failed setting fd %d non-blocking: %s",
+ fd, safe_strerror(errno));
+ return -1;
+ }
+ return 0;
+}