diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-18 21:43:53 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-18 21:43:53 +0000 |
commit | 60f0a86c75ab6a34d38a6ffb402696127e9963e2 (patch) | |
tree | e5e6eff96c1f67204614b62bf68960ca63f8b0b8 /src/conns.c | |
parent | 1691feb9bb25a95d3fac0aa6fbdaccf7ed374c19 (diff) |
The stats now wait until after the client has finished sending all its
headers before sending the HTTP response back. This should be more
standards compliant.
Diffstat (limited to 'src/conns.c')
-rw-r--r-- | src/conns.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/conns.c b/src/conns.c index 227998a..1d72bfe 100644 --- a/src/conns.c +++ b/src/conns.c @@ -1,4 +1,4 @@ -/* $Id: conns.c,v 1.9 2002-04-15 02:07:27 rjkaes Exp $ +/* $Id: conns.c,v 1.10 2002-04-18 21:43:52 rjkaes Exp $ * * Create and free the connection structure. One day there could be * other connnection related tasks put here, but for now the header @@ -62,6 +62,7 @@ initialize_conn(int client_fd) connptr->error_number = -1; connptr->connect_method = FALSE; + connptr->show_stats = FALSE; connptr->protocol.major = connptr->protocol.minor = 0; |