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 5STATIC_TABLE_ENTRY(":authority", "", 1); 6STATIC_TABLE_ENTRY(":method", "GET", 2); 7STATIC_TABLE_ENTRY(":method", "POST", 3); 8STATIC_TABLE_ENTRY(":path", "/", 4); 9STATIC_TABLE_ENTRY(":path", "/index.html", 5); 10STATIC_TABLE_ENTRY(":scheme", "http", 6); 11STATIC_TABLE_ENTRY(":scheme", "https", 7); 12STATIC_TABLE_ENTRY(":status", "200", 8); 13STATIC_TABLE_ENTRY(":status", "204", 9); 14STATIC_TABLE_ENTRY(":status", "206", 10); 15STATIC_TABLE_ENTRY(":status", "304", 11); 16STATIC_TABLE_ENTRY(":status", "400", 12); 17STATIC_TABLE_ENTRY(":status", "404", 13); 18STATIC_TABLE_ENTRY(":status", "500", 14); 19STATIC_TABLE_ENTRY("accept-charset", "", 15); 20STATIC_TABLE_ENTRY("accept-encoding", "gzip, deflate", 16); 21STATIC_TABLE_ENTRY("accept-language", "", 17); 22STATIC_TABLE_ENTRY("accept-ranges", "", 18); 23STATIC_TABLE_ENTRY("accept", "", 19); 24STATIC_TABLE_ENTRY("access-control-allow-origin", "", 20); 25STATIC_TABLE_ENTRY("age", "", 21); 26STATIC_TABLE_ENTRY("allow", "", 22); 27STATIC_TABLE_ENTRY("authorization", "", 23); 28STATIC_TABLE_ENTRY("cache-control", "", 24); 29STATIC_TABLE_ENTRY("content-disposition", "", 25); 30STATIC_TABLE_ENTRY("content-encoding", "", 26); 31STATIC_TABLE_ENTRY("content-language", "", 27); 32STATIC_TABLE_ENTRY("content-length", "", 28); 33STATIC_TABLE_ENTRY("content-location", "", 29); 34STATIC_TABLE_ENTRY("content-range", "", 30); 35STATIC_TABLE_ENTRY("content-type", "", 31); 36STATIC_TABLE_ENTRY("cookie", "", 32); 37STATIC_TABLE_ENTRY("date", "", 33); 38STATIC_TABLE_ENTRY("etag", "", 34); 39STATIC_TABLE_ENTRY("expect", "", 35); 40STATIC_TABLE_ENTRY("expires", "", 36); 41STATIC_TABLE_ENTRY("from", "", 37); 42STATIC_TABLE_ENTRY("host", "", 38); 43STATIC_TABLE_ENTRY("if-match", "", 39); 44STATIC_TABLE_ENTRY("if-modified-since", "", 40); 45STATIC_TABLE_ENTRY("if-none-match", "", 41); 46STATIC_TABLE_ENTRY("if-range", "", 42); 47STATIC_TABLE_ENTRY("if-unmodified-since", "", 43); 48STATIC_TABLE_ENTRY("last-modified", "", 44); 49STATIC_TABLE_ENTRY("link", "", 45); 50STATIC_TABLE_ENTRY("location", "", 46); 51STATIC_TABLE_ENTRY("max-forwards", "", 47); 52STATIC_TABLE_ENTRY("proxy-authenticate", "", 48); 53STATIC_TABLE_ENTRY("proxy-authorization", "", 49); 54STATIC_TABLE_ENTRY("range", "", 50); 55STATIC_TABLE_ENTRY("referer", "", 51); 56STATIC_TABLE_ENTRY("refresh", "", 52); 57STATIC_TABLE_ENTRY("retry-after", "", 53); 58STATIC_TABLE_ENTRY("server", "", 54); 59STATIC_TABLE_ENTRY("set-cookie", "", 55); 60STATIC_TABLE_ENTRY("strict-transport-security", "", 56); 61STATIC_TABLE_ENTRY("transfer-encoding", "", 57); 62STATIC_TABLE_ENTRY("user-agent", "", 58); 63STATIC_TABLE_ENTRY("vary", "", 59); 64STATIC_TABLE_ENTRY("via", "", 60); 65STATIC_TABLE_ENTRY("www-authenticate", "", 61); 66