diff options
author | Adam Chlipala <adam@chlipala.net> | 2010-11-20 09:48:03 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2010-11-20 09:48:03 -0500 |
commit | f21f9e29d19a8b241c1d6d790904001fdf384d59 (patch) | |
tree | 9fefe5208e41e51cc58656d1f08d1adf9f08c7a8 /src/c | |
parent | 17707f8419d61ef9c9df14c9693226a1ca5a0526 (diff) |
In FastCGI, signal 304 with a header, not the usual HTTP/1.1 line
Diffstat (limited to 'src/c')
-rw-r--r-- | src/c/cgi.c | 2 | ||||
-rw-r--r-- | src/c/fastcgi.c | 2 | ||||
-rw-r--r-- | src/c/http.c | 2 | ||||
-rw-r--r-- | src/c/request.c | 2 |
4 files changed, 7 insertions, 1 deletions
diff --git a/src/c/cgi.c b/src/c/cgi.c index fe7dc564..50d64f58 100644 --- a/src/c/cgi.c +++ b/src/c/cgi.c @@ -137,3 +137,5 @@ void uw_do_expunge(uw_context ctx, uw_Basis_client cli, void *data) { void uw_post_expunge(uw_context ctx, void *data) { } + +int uw_supports_direct_status = 1; diff --git a/src/c/fastcgi.c b/src/c/fastcgi.c index 4e20cc01..756ed3b0 100644 --- a/src/c/fastcgi.c +++ b/src/c/fastcgi.c @@ -618,3 +618,5 @@ void uw_do_expunge(uw_context ctx, uw_Basis_client cli, void *data) { void uw_post_expunge(uw_context ctx, void *data) { } + +int uw_supports_direct_status = 0; diff --git a/src/c/http.c b/src/c/http.c index 5754d229..d52661ce 100644 --- a/src/c/http.c +++ b/src/c/http.c @@ -358,3 +358,5 @@ void uw_do_expunge(uw_context ctx, uw_Basis_client cli, void *data) { void uw_post_expunge(uw_context ctx, void *data) { } + +int uw_supports_direct_status = 1; diff --git a/src/c/request.c b/src/c/request.c index 190a327f..52006e85 100644 --- a/src/c/request.c +++ b/src/c/request.c @@ -211,7 +211,7 @@ request_result uw_request(uw_request_context rc, uw_context ctx, if (id && pass) { unsigned idn = atoi(id); uw_client_connect(idn, atoi(pass), sock, send, close, logger_data, log_error); - log_error(logger_data, "Processed request for messages by client %u\n\n", idn); + log_debug(logger_data, "Processed request for messages by client %u\n\n", idn); return KEEP_OPEN; } else { |