comparison src/http/v3/ngx_http_v3.h @ 8925:18d23ed15eef quic

HTTP/3: renamed files. ngx_http_v3_tables.h and ngx_http_v3_tables.c are renamed to ngx_http_v3_table.h and ngx_http_v3_table.c to better match HTTP/2 code. ngx_http_v3_streams.h and ngx_http_v3_streams.c are renamed to ngx_http_v3_uni.h and ngx_http_v3_uni.c to better match their content.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 07 Dec 2021 13:01:28 +0300
parents d6ef13c5fd8e
children 10522e8dea41
comparison
equal deleted inserted replaced
8924:d6ef13c5fd8e 8925:18d23ed15eef
13 #include <ngx_core.h> 13 #include <ngx_core.h>
14 #include <ngx_http.h> 14 #include <ngx_http.h>
15 15
16 #include <ngx_http_v3_parse.h> 16 #include <ngx_http_v3_parse.h>
17 #include <ngx_http_v3_encode.h> 17 #include <ngx_http_v3_encode.h>
18 #include <ngx_http_v3_streams.h> 18 #include <ngx_http_v3_uni.h>
19 #include <ngx_http_v3_tables.h> 19 #include <ngx_http_v3_table.h>
20 20
21 21
22 #define NGX_HTTP_V3_ALPN_PROTO "\x02h3" 22 #define NGX_HTTP_V3_ALPN_PROTO "\x02h3"
23 #define NGX_HTTP_V3_ALPN_DRAFT_FMT "\x05h3-%02uD" 23 #define NGX_HTTP_V3_ALPN_DRAFT_FMT "\x05h3-%02uD"
24 24