QUICHE team | fd50a40 | 2018-12-07 22:54:05 -0500 | [diff] [blame] | 1 | // This file is designed to be included by C/C++ files which need the contents |
| 2 | // of the HPACK static table. It may be included more than once if necessary. |
| 3 | // See http://httpwg.org/specs/rfc7541.html#static.table.definition |
| 4 | |
| 5 | STATIC_TABLE_ENTRY(":authority", "", 1); |
| 6 | STATIC_TABLE_ENTRY(":method", "GET", 2); |
| 7 | STATIC_TABLE_ENTRY(":method", "POST", 3); |
| 8 | STATIC_TABLE_ENTRY(":path", "/", 4); |
| 9 | STATIC_TABLE_ENTRY(":path", "/index.html", 5); |
| 10 | STATIC_TABLE_ENTRY(":scheme", "http", 6); |
| 11 | STATIC_TABLE_ENTRY(":scheme", "https", 7); |
| 12 | STATIC_TABLE_ENTRY(":status", "200", 8); |
| 13 | STATIC_TABLE_ENTRY(":status", "204", 9); |
| 14 | STATIC_TABLE_ENTRY(":status", "206", 10); |
| 15 | STATIC_TABLE_ENTRY(":status", "304", 11); |
| 16 | STATIC_TABLE_ENTRY(":status", "400", 12); |
| 17 | STATIC_TABLE_ENTRY(":status", "404", 13); |
| 18 | STATIC_TABLE_ENTRY(":status", "500", 14); |
| 19 | STATIC_TABLE_ENTRY("accept-charset", "", 15); |
| 20 | STATIC_TABLE_ENTRY("accept-encoding", "gzip, deflate", 16); |
| 21 | STATIC_TABLE_ENTRY("accept-language", "", 17); |
| 22 | STATIC_TABLE_ENTRY("accept-ranges", "", 18); |
| 23 | STATIC_TABLE_ENTRY("accept", "", 19); |
| 24 | STATIC_TABLE_ENTRY("access-control-allow-origin", "", 20); |
| 25 | STATIC_TABLE_ENTRY("age", "", 21); |
| 26 | STATIC_TABLE_ENTRY("allow", "", 22); |
| 27 | STATIC_TABLE_ENTRY("authorization", "", 23); |
| 28 | STATIC_TABLE_ENTRY("cache-control", "", 24); |
| 29 | STATIC_TABLE_ENTRY("content-disposition", "", 25); |
| 30 | STATIC_TABLE_ENTRY("content-encoding", "", 26); |
| 31 | STATIC_TABLE_ENTRY("content-language", "", 27); |
| 32 | STATIC_TABLE_ENTRY("content-length", "", 28); |
| 33 | STATIC_TABLE_ENTRY("content-location", "", 29); |
| 34 | STATIC_TABLE_ENTRY("content-range", "", 30); |
| 35 | STATIC_TABLE_ENTRY("content-type", "", 31); |
| 36 | STATIC_TABLE_ENTRY("cookie", "", 32); |
| 37 | STATIC_TABLE_ENTRY("date", "", 33); |
| 38 | STATIC_TABLE_ENTRY("etag", "", 34); |
| 39 | STATIC_TABLE_ENTRY("expect", "", 35); |
| 40 | STATIC_TABLE_ENTRY("expires", "", 36); |
| 41 | STATIC_TABLE_ENTRY("from", "", 37); |
| 42 | STATIC_TABLE_ENTRY("host", "", 38); |
| 43 | STATIC_TABLE_ENTRY("if-match", "", 39); |
| 44 | STATIC_TABLE_ENTRY("if-modified-since", "", 40); |
| 45 | STATIC_TABLE_ENTRY("if-none-match", "", 41); |
| 46 | STATIC_TABLE_ENTRY("if-range", "", 42); |
| 47 | STATIC_TABLE_ENTRY("if-unmodified-since", "", 43); |
| 48 | STATIC_TABLE_ENTRY("last-modified", "", 44); |
| 49 | STATIC_TABLE_ENTRY("link", "", 45); |
| 50 | STATIC_TABLE_ENTRY("location", "", 46); |
| 51 | STATIC_TABLE_ENTRY("max-forwards", "", 47); |
| 52 | STATIC_TABLE_ENTRY("proxy-authenticate", "", 48); |
| 53 | STATIC_TABLE_ENTRY("proxy-authorization", "", 49); |
| 54 | STATIC_TABLE_ENTRY("range", "", 50); |
| 55 | STATIC_TABLE_ENTRY("referer", "", 51); |
| 56 | STATIC_TABLE_ENTRY("refresh", "", 52); |
| 57 | STATIC_TABLE_ENTRY("retry-after", "", 53); |
| 58 | STATIC_TABLE_ENTRY("server", "", 54); |
| 59 | STATIC_TABLE_ENTRY("set-cookie", "", 55); |
| 60 | STATIC_TABLE_ENTRY("strict-transport-security", "", 56); |
| 61 | STATIC_TABLE_ENTRY("transfer-encoding", "", 57); |
| 62 | STATIC_TABLE_ENTRY("user-agent", "", 58); |
| 63 | STATIC_TABLE_ENTRY("vary", "", 59); |
| 64 | STATIC_TABLE_ENTRY("via", "", 60); |
| 65 | STATIC_TABLE_ENTRY("www-authenticate", "", 61); |