comparison src/http/ngx_http_request.h @ 8813:6674a50cbb6c quic

Merged with the default branch.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 15 Jul 2021 16:28:21 +0300
parents 67f0eb150047 52338ddf9e2f
children fac88e160653
comparison
equal deleted inserted replaced
8812:e7a2d3914877 8813:6674a50cbb6c
24 #define NGX_HTTP_VERSION_10 1000 24 #define NGX_HTTP_VERSION_10 1000
25 #define NGX_HTTP_VERSION_11 1001 25 #define NGX_HTTP_VERSION_11 1001
26 #define NGX_HTTP_VERSION_20 2000 26 #define NGX_HTTP_VERSION_20 2000
27 #define NGX_HTTP_VERSION_30 3000 27 #define NGX_HTTP_VERSION_30 3000
28 28
29 #define NGX_HTTP_UNKNOWN 0x0001 29 #define NGX_HTTP_UNKNOWN 0x00000001
30 #define NGX_HTTP_GET 0x0002 30 #define NGX_HTTP_GET 0x00000002
31 #define NGX_HTTP_HEAD 0x0004 31 #define NGX_HTTP_HEAD 0x00000004
32 #define NGX_HTTP_POST 0x0008 32 #define NGX_HTTP_POST 0x00000008
33 #define NGX_HTTP_PUT 0x0010 33 #define NGX_HTTP_PUT 0x00000010
34 #define NGX_HTTP_DELETE 0x0020 34 #define NGX_HTTP_DELETE 0x00000020
35 #define NGX_HTTP_MKCOL 0x0040 35 #define NGX_HTTP_MKCOL 0x00000040
36 #define NGX_HTTP_COPY 0x0080 36 #define NGX_HTTP_COPY 0x00000080
37 #define NGX_HTTP_MOVE 0x0100 37 #define NGX_HTTP_MOVE 0x00000100
38 #define NGX_HTTP_OPTIONS 0x0200 38 #define NGX_HTTP_OPTIONS 0x00000200
39 #define NGX_HTTP_PROPFIND 0x0400 39 #define NGX_HTTP_PROPFIND 0x00000400
40 #define NGX_HTTP_PROPPATCH 0x0800 40 #define NGX_HTTP_PROPPATCH 0x00000800
41 #define NGX_HTTP_LOCK 0x1000 41 #define NGX_HTTP_LOCK 0x00001000
42 #define NGX_HTTP_UNLOCK 0x2000 42 #define NGX_HTTP_UNLOCK 0x00002000
43 #define NGX_HTTP_PATCH 0x4000 43 #define NGX_HTTP_PATCH 0x00004000
44 #define NGX_HTTP_TRACE 0x8000 44 #define NGX_HTTP_TRACE 0x00008000
45 #define NGX_HTTP_CONNECT 0x00010000
45 46
46 #define NGX_HTTP_CONNECTION_CLOSE 1 47 #define NGX_HTTP_CONNECTION_CLOSE 1
47 #define NGX_HTTP_CONNECTION_KEEP_ALIVE 2 48 #define NGX_HTTP_CONNECTION_KEEP_ALIVE 2
48 49
49 50
470 /* URI with "%" */ 471 /* URI with "%" */
471 unsigned quoted_uri:1; 472 unsigned quoted_uri:1;
472 473
473 /* URI with "+" */ 474 /* URI with "+" */
474 unsigned plus_in_uri:1; 475 unsigned plus_in_uri:1;
475
476 /* URI with " " */
477 unsigned space_in_uri:1;
478 476
479 /* URI with empty path */ 477 /* URI with empty path */
480 unsigned empty_path_in_uri:1; 478 unsigned empty_path_in_uri:1;
481 479
482 unsigned invalid_header:1; 480 unsigned invalid_header:1;