diff options
Diffstat (limited to 'src/conns.c')
-rw-r--r-- | src/conns.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/conns.c b/src/conns.c index c94b245..6a20044 100644 --- a/src/conns.c +++ b/src/conns.c @@ -1,4 +1,4 @@ -/* $Id: conns.c,v 1.22 2004-04-27 18:53:14 rjkaes Exp $ +/* $Id: conns.c,v 1.23 2004-08-10 21:24:23 rjkaes Exp $ * * Create and free the connection structure. One day there could be * other connection related tasks put here, but for now the header @@ -76,6 +76,8 @@ initialize_conn(int client_fd, const char* ipaddr, const char* string_addr, connptr->client_ip_addr = safestrdup(ipaddr); connptr->client_string_addr = safestrdup(string_addr); + connptr->upstream_proxy = NULL; + update_stats(STAT_OPEN); #ifdef REVERSE_SUPPORT |