#endif
#endif
-#if (NGX_HTTP_V3 || NGX_COMPAT)
- ngx_http_v3_session_t *v3_session;
-#endif
-
ngx_chain_t *busy;
ngx_int_t nbusy;
goto failed;
}
+ h3c->http_connection = hc;
+
ngx_queue_init(&h3c->blocked);
h3c->keepalive.log = c->log;
cln->handler = ngx_http_v3_cleanup_session;
cln->data = h3c;
- hc->v3_session = h3c;
+ c->data = h3c;
return NGX_OK;
#define NGX_HTTP_V3_ERR_DECODER_STREAM_ERROR 0x202
-#define ngx_http_quic_get_connection(c) \
- ((ngx_http_connection_t *) ((c)->quic ? (c)->quic->parent->data \
+#define ngx_http_v3_get_session(c) \
+ ((ngx_http_v3_session_t *) ((c)->quic ? (c)->quic->parent->data \
: (c)->data))
-#define ngx_http_v3_get_session(c) ngx_http_quic_get_connection(c)->v3_session
+#define ngx_http_quic_get_connection(c) \
+ (ngx_http_v3_get_session(c)->http_connection)
#define ngx_http_v3_get_module_loc_conf(c, module) \
ngx_http_get_module_loc_conf(ngx_http_quic_get_connection(c)->conf_ctx, \
struct ngx_http_v3_session_s {
+ ngx_http_connection_t *http_connection;
+
ngx_http_v3_dynamic_table_t table;
ngx_event_t keepalive;
clcf = ngx_http_get_module_loc_conf(hc->conf_ctx, ngx_http_core_module);
if (c->quic == NULL) {
- if (ngx_http_v3_init_session(c) != NGX_OK) {
- ngx_http_close_connection(c);
- return;
- }
-
h3scf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_v3_module);
h3scf->quic.idle_timeout = clcf->keepalive_timeout;
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, "http3 init");
+ if (ngx_http_v3_init_session(c) != NGX_OK) {
+ return NGX_ERROR;
+ }
+
h3c = ngx_http_v3_get_session(c);
clcf = ngx_http_v3_get_module_loc_conf(c, ngx_http_core_module);
ngx_add_timer(&h3c->keepalive, clcf->keepalive_timeout);