comparison src/http/ngx_http_request.c @ 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 8d0753760546
children c851a2ed5ce8
comparison
equal deleted inserted replaced
9056:be39ffdf9208 9057:7b83da3bdf9f
324 } 324 }
325 #endif 325 #endif
326 326
327 #if (NGX_HTTP_V3) 327 #if (NGX_HTTP_V3)
328 if (hc->addr_conf->http3) { 328 if (hc->addr_conf->http3) {
329 ngx_http_v3_init(c); 329 ngx_http_v3_init_stream(c);
330 return; 330 return;
331 } 331 }
332 #endif 332 #endif
333 333
334 #if (NGX_HTTP_SSL) 334 #if (NGX_HTTP_SSL)
3784 3784
3785 #endif 3785 #endif
3786 3786
3787 #if (NGX_HTTP_V3) 3787 #if (NGX_HTTP_V3)
3788 if (c->quic) { 3788 if (c->quic) {
3789 ngx_http_v3_reset_connection(c); 3789 ngx_http_v3_reset_stream(c);
3790 } 3790 }
3791 #endif 3791 #endif
3792 3792
3793 #if (NGX_STAT_STUB) 3793 #if (NGX_STAT_STUB)
3794 (void) ngx_atomic_fetch_add(ngx_stat_active, -1); 3794 (void) ngx_atomic_fetch_add(ngx_stat_active, -1);