comparison src/http/v3/ngx_http_v3.h @ 9057:7b83da3bdf9f quic

HTTP/3: renamed functions. ngx_http_v3_init() is renamed ngx_http_v3_init_stream(). ngx_http_v3_reset_connection() is renamed to ngx_http_v3_reset_stream().
author Roman Arutyunyan <arut@nginx.com>
date Mon, 22 Aug 2022 14:09:03 +0400
parents 1192923be0aa
children b0c2234aaa9f
comparison
equal deleted inserted replaced
9056:be39ffdf9208 9057:7b83da3bdf9f
153 153
154 ngx_connection_t *known_streams[NGX_HTTP_V3_MAX_KNOWN_STREAM]; 154 ngx_connection_t *known_streams[NGX_HTTP_V3_MAX_KNOWN_STREAM];
155 }; 155 };
156 156
157 157
158 void ngx_http_v3_init(ngx_connection_t *c); 158 void ngx_http_v3_init_stream(ngx_connection_t *c);
159 void ngx_http_v3_reset_connection(ngx_connection_t *c); 159 void ngx_http_v3_reset_stream(ngx_connection_t *c);
160 ngx_int_t ngx_http_v3_init_session(ngx_connection_t *c); 160 ngx_int_t ngx_http_v3_init_session(ngx_connection_t *c);
161 ngx_int_t ngx_http_v3_check_flood(ngx_connection_t *c); 161 ngx_int_t ngx_http_v3_check_flood(ngx_connection_t *c);
162 void ngx_http_v3_shutdown(ngx_connection_t *c); 162 void ngx_http_v3_shutdown(ngx_connection_t *c);
163 163
164 ngx_int_t ngx_http_v3_read_request_body(ngx_http_request_t *r); 164 ngx_int_t ngx_http_v3_read_request_body(ngx_http_request_t *r);