]> git.kaiwu.me - nginx.git/commit
HTTP/3: postponed session creation to init() callback.
authorRoman Arutyunyan <arut@nginx.com>
Thu, 14 Sep 2023 10:13:43 +0000 (14:13 +0400)
committerRoman Arutyunyan <arut@nginx.com>
Thu, 14 Sep 2023 10:13:43 +0000 (14:13 +0400)
commit26e606a6bcdfa4001bfb6bd24612e8aafa6513b2
tree0d9e251b38169d4c8b0aade70e5874cfedee9c29
parent6ecf576e34c3780b6cdb3f509c89042aa411e3d2
HTTP/3: postponed session creation to init() callback.

Now the session object is assigned to c->data while ngx_http_connection_t
object is referenced by its http_connection field, similar to
ngx_http_v2_connection_t and ngx_http_request_t.

The change allows to eliminate v3_session field from ngx_http_connection_t.
The field was under NGX_HTTP_V3 macro, which was a source of binary
compatibility problems when nginx/module is build with/without HTTP/3 support.

Postponing is essential since c->data should retain the reference to
ngx_http_connection_t object throughout QUIC handshake, because SSL callbacks
ngx_http_ssl_servername() and ngx_http_ssl_alpn_select() rely on this.
src/http/ngx_http_request.h
src/http/v3/ngx_http_v3.c
src/http/v3/ngx_http_v3.h
src/http/v3/ngx_http_v3_request.c