diff options
author | Christian Pointner <equinox@spreadspace.org> | 2010-12-14 18:08:52 +0000 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2010-12-14 18:08:52 +0000 |
commit | c314128858c84bcee453d5b291eb8536e06f9aca (patch) | |
tree | 492b71865607b623c90ea4b96ae04b3f1d7c8301 /src/clients.c | |
parent | fixed problematic usage of strndup (diff) |
listener info output on SIG USR1
clients info output on SIG USR2
git-svn-id: https://svn.spreadspace.org/tcpproxy/trunk@59 e61f0598-a718-4e21-a8f0-0aadfa62ad6b
Diffstat (limited to 'src/clients.c')
-rw-r--r-- | src/clients.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clients.c b/src/clients.c index a1c8840..4175603 100644 --- a/src/clients.c +++ b/src/clients.c @@ -211,7 +211,7 @@ void clients_print(clients_t* list) client_t* c = (client_t*)tmp->data_; if(c) { // TODO: print useful info - printf("client %d <-> %d: tba...\n", c->fd_[0], c->fd_[1]); + log_printf(NOTICE, "client #%d/%d: tba...", c->fd_[0], c->fd_[1]); } tmp = tmp->next_; } |