]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - send.h
update README
[paraslash.git] / send.h
diff --git a/send.h b/send.h
index 2c6c7274344a6aaa03c1cf7c844639ca87c4d0ab..75c13731bb1af9223a0a32fdc8c85792f04f3d50 100644 (file)
--- a/send.h
+++ b/send.h
@@ -84,3 +84,22 @@ struct sender {
  */
        int (*client_cmds[NUM_SENDER_CMDS])(struct sender_command_data*);
 };
+
+
+
+static inline int _write_ok(int fd)
+{
+       struct timeval tv = {0, 0};
+       fd_set wfds;
+       int ret;
+again:
+       FD_ZERO(&wfds);
+       FD_SET(fd, &wfds);
+       ret = select(fd + 1, NULL, &wfds, NULL, &tv);
+       if (ret < 0 && errno == EINTR)
+               goto again;
+       if (ret < 0)
+               ret = 0;
+       return ret;
+}
+