diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-11-21 01:00:09 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-11-21 01:00:09 +0000 |
commit | bc8c3ff39979fc297845d09dbd69e16d3feeaf0e (patch) | |
tree | 2e6da5401d13e15c89b6271e941565cbb5ff2084 /src/conns.c | |
parent | 90ee7e01ca432566a2396d6c5b03f93ab0d8dbb8 (diff) |
Include the protocol variables in the conn_s structure.
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 daf5ad3..8c0767a 100644 --- a/src/conns.c +++ b/src/conns.c @@ -1,4 +1,4 @@ -/* $Id: conns.c,v 1.3 2001-10-25 16:58:09 rjkaes Exp $ +/* $Id: conns.c,v 1.4 2001-11-21 01:00:08 rjkaes Exp $ * * Create and free the connection structure. One day there could be * other connnection related tasks put here, but for now the header @@ -37,6 +37,8 @@ void initialize_conn(struct conn_s *connptr) connptr->ssl = FALSE; connptr->upstream = FALSE; + connptr->protocol.major = connptr->protocol.minor = 0; + update_stats(STAT_OPEN); } |