comparison src/http/ngx_http_request.h @ 189:c966c09be66b

nginx-0.0.1-2003-11-18-19:49:00 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 18 Nov 2003 16:49:00 +0000
parents 9f3a78b06c48
children 02a715e85df1
comparison
equal deleted inserted replaced
188:0061d1f0908d 189:c966c09be66b
46 #define NGX_HTTP_NOT_ALLOWED 405 46 #define NGX_HTTP_NOT_ALLOWED 405
47 #define NGX_HTTP_REQUEST_TIME_OUT 408 47 #define NGX_HTTP_REQUEST_TIME_OUT 408
48 #define NGX_HTTP_REQUEST_ENTITY_TOO_LARGE 413 48 #define NGX_HTTP_REQUEST_ENTITY_TOO_LARGE 413
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
52 /*
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
55 */
56 #define NGX_HTTP_CLIENT_CLOSED_REQUEST 420
51 57
52 #define NGX_HTTP_INTERNAL_SERVER_ERROR 500 58 #define NGX_HTTP_INTERNAL_SERVER_ERROR 500
53 #define NGX_HTTP_NOT_IMPLEMENTED 501 59 #define NGX_HTTP_NOT_IMPLEMENTED 501
54 #define NGX_HTTP_BAD_GATEWAY 502 60 #define NGX_HTTP_BAD_GATEWAY 502
55 #define NGX_HTTP_SERVICE_UNAVAILABLE 503 61 #define NGX_HTTP_SERVICE_UNAVAILABLE 503