From a269d613fe0536a01eb86367a545e337e51d1309 Mon Sep 17 00:00:00 2001 From: ajs Date: Wed, 16 Feb 2005 00:45:37 +0000 Subject: 2005-02-15 Andrew J. Schorr * network.h: Declare new function set_nonblocking. Indicate that readn and writen are deprecated. * network.c: (set_nonblocking) New function to make a file descriptor non-blocking, since it seems silly to have fcntl calls sprinkled throughout the code. --- lib/network.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'lib/network.c') 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 +#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; +} -- cgit v1.2.1