diff options
Diffstat (limited to 'src/http/v2/ngx_http_v2_table.c')
-rw-r--r-- | src/http/v2/ngx_http_v2_table.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/http/v2/ngx_http_v2_table.c b/src/http/v2/ngx_http_v2_table.c index 62025c426..7d49803fd 100644 --- a/src/http/v2/ngx_http_v2_table.c +++ b/src/http/v2/ngx_http_v2_table.c @@ -86,6 +86,20 @@ static ngx_http_v2_header_t ngx_http_v2_static_table[] = { / sizeof(ngx_http_v2_header_t)) +ngx_str_t * +ngx_http_v2_get_static_name(ngx_uint_t index) +{ + return &ngx_http_v2_static_table[index - 1].name; +} + + +ngx_str_t * +ngx_http_v2_get_static_value(ngx_uint_t index) +{ + return &ngx_http_v2_static_table[index - 1].value; +} + + ngx_int_t ngx_http_v2_get_indexed_header(ngx_http_v2_connection_t *h2c, ngx_uint_t index, ngx_uint_t name_only) |