diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/conn.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/conn.cpp b/src/conn.cpp index 5e663b6..98ad3fc 100644 --- a/src/conn.cpp +++ b/src/conn.cpp @@ -273,7 +273,7 @@ void ConnPool::disp_terminate(const conn_t &conn) { }); } -void ConnPool::accept_client(int fd, int events) { +void ConnPool::accept_client(int fd, int) { int client_fd; struct sockaddr client_addr; try { @@ -285,7 +285,6 @@ void ConnPool::accept_client(int fd, int events) { } else { - SALTICIDAE_LOG_INFO("%d\n", events); int one = 1; if (setsockopt(client_fd, SOL_TCP, TCP_NODELAY, (const char *)&one, sizeof(one)) < 0) throw ConnPoolError(SALTI_ERROR_ACCEPT, errno); |