diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-11-02 21:19:46 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-11-02 21:19:46 +0000 |
commit | e61424a7bf6e17c19b6d82bfe60ac92207691d6e (patch) | |
tree | 9498b9f00425077b0327efb54cec385a01b01825 /src | |
parent | 4680546c65c878f5bc0e39a382408c11d07fe7bd (diff) | |
download | tinyproxy-e61424a7bf6e17c19b6d82bfe60ac92207691d6e.tar.gz tinyproxy-e61424a7bf6e17c19b6d82bfe60ac92207691d6e.zip |
Informing the user of the connection to the tunnel is a INFO type message,
not a CONN level message.
Diffstat (limited to '')
-rw-r--r-- | src/reqs.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: reqs.c,v 1.35 2001-10-25 16:58:50 rjkaes Exp $ +/* $Id: reqs.c,v 1.36 2001-11-02 21:19:46 rjkaes Exp $ * * This is where all the work in tinyproxy is actually done. Incoming * connections have a new thread created for them. The thread then @@ -797,7 +797,7 @@ void handle_connection(int fd) goto internal_proxy; } - log_message(LOG_CONN, "Established a connection to the tunnel \"%s\" using file descriptor %d.", config.tunnel_name, connptr->server_fd); + log_message(LOG_INFO, "Established a connection to the tunnel \"%s\" using file descriptor %d.", config.tunnel_name, connptr->server_fd); /* * I know GOTOs are evil, but duplicating the code is even |