diff options
author | Roman Arutyunyan <arut@nginx.com> | 2021-05-05 12:54:10 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2021-05-05 12:54:10 +0300 |
commit | 0ea300d35eb066631a21b2042cfe9cd2ea94b15f (patch) | |
tree | 84c33b218057d03da197e14c5b0916cac74c01f2 /src/http/v3/ngx_http_v3_request.c | |
parent | 38773a3c1130d34715f1cce24527a10258447354 (diff) | |
download | nginx-0ea300d35eb066631a21b2042cfe9cd2ea94b15f.tar.gz nginx-0ea300d35eb066631a21b2042cfe9cd2ea94b15f.zip |
HTTP/3: renamed ngx_http_v3_connection_t to ngx_http_v3_session_t.
Diffstat (limited to 'src/http/v3/ngx_http_v3_request.c')
-rw-r--r-- | src/http/v3/ngx_http_v3_request.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/v3/ngx_http_v3_request.c b/src/http/v3/ngx_http_v3_request.c index 23b827aed..9d7ca952d 100644 --- a/src/http/v3/ngx_http_v3_request.c +++ b/src/http/v3/ngx_http_v3_request.c @@ -59,7 +59,7 @@ ngx_http_v3_init(ngx_connection_t *c) ngx_pool_cleanup_t *cln; ngx_http_request_t *r; ngx_http_connection_t *hc; - ngx_http_v3_connection_t *h3c; + ngx_http_v3_session_t *h3c; ngx_http_core_loc_conf_t *clcf; ngx_http_core_srv_conf_t *cscf; @@ -185,8 +185,8 @@ ngx_http_v3_cleanup_request(void *data) { ngx_connection_t *c = data; + ngx_http_v3_session_t *h3c; ngx_http_core_loc_conf_t *clcf; - ngx_http_v3_connection_t *h3c; h3c = ngx_http_v3_get_session(c); |