More homogeneous name: tcp_listen -> tcp_listen_nonblock.
authorPierre Habouzit <madcoder@debian.org>
Wed, 29 Aug 2007 18:14:08 +0000 (20:14 +0200)
committerPierre Habouzit <madcoder@debian.org>
Wed, 29 Aug 2007 18:14:08 +0000 (20:14 +0200)
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
daemon.c
daemon.h
srsd.c

index 64f9c68..c3aac5f 100644 (file)
--- a/daemon.c
+++ b/daemon.c
@@ -57,7 +57,7 @@ static int setnonblock(int sock)
 }
 
 
-int tcp_listen(const struct sockaddr *addr, socklen_t len)
+int tcp_listen_nonblock(const struct sockaddr *addr, socklen_t len)
 {
     int sock;
 
index 76f9f94..2fec199 100644 (file)
--- a/daemon.h
+++ b/daemon.h
@@ -36,7 +36,7 @@
 #ifndef POSTLICYD_DAEMON_H
 #define POSTLICYD_DAEMON_H
 
-int tcp_listen(const struct sockaddr *addr, socklen_t len);
+int tcp_listen_nonblock(const struct sockaddr *addr, socklen_t len);
 int accept_nonblock(int fd);
 
 #endif
diff --git a/srsd.c b/srsd.c
index 8d88677..467c2f2 100644 (file)
--- a/srsd.c
+++ b/srsd.c
@@ -172,7 +172,7 @@ int start_listener(int epollfd, int port, bool decoder)
     int sock;
 
     addr.sin_port = htons(port);
-    sock = tcp_listen((const struct sockaddr *)&addr, sizeof(addr));
+    sock = tcp_listen_nonblock((const struct sockaddr *)&addr, sizeof(addr));
     if (sock < 0) {
         return -1;
     }