comparison src/http/ngx_http_request.h @ 190:02a715e85df1

nginx-0.0.1-2003-11-19-00:34:08 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 18 Nov 2003 21:34:08 +0000
parents c966c09be66b
children 0b81c7a0b133
comparison
equal deleted inserted replaced
189:c966c09be66b 190:02a715e85df1
49 #define NGX_HTTP_REQUEST_URI_TOO_LARGE 414 49 #define NGX_HTTP_REQUEST_URI_TOO_LARGE 414
50 #define NGX_HTTP_RANGE_NOT_SATISFIABLE 416 50 #define NGX_HTTP_RANGE_NOT_SATISFIABLE 416
51 51
52 /* 52 /*
53 * HTTP does not define a code for the case when a client closed a connection 53 * HTTP does not define a code for the case when a client closed a connection
54 * while we are processing request so we introduce own code to log this case 54 * while we are processing request so we introduce own code to log such
55 * situation when client has closed a connection before we even try to
56 * send HTTP header to it
55 */ 57 */
56 #define NGX_HTTP_CLIENT_CLOSED_REQUEST 420 58 #define NGX_HTTP_CLIENT_CLOSED_REQUEST 499
57 59
58 #define NGX_HTTP_INTERNAL_SERVER_ERROR 500 60 #define NGX_HTTP_INTERNAL_SERVER_ERROR 500
59 #define NGX_HTTP_NOT_IMPLEMENTED 501 61 #define NGX_HTTP_NOT_IMPLEMENTED 501
60 #define NGX_HTTP_BAD_GATEWAY 502 62 #define NGX_HTTP_BAD_GATEWAY 502
61 #define NGX_HTTP_SERVICE_UNAVAILABLE 503 63 #define NGX_HTTP_SERVICE_UNAVAILABLE 503