comparison src/http/v3/ngx_http_v3.h @ 8630:279ad36f2f4b quic

QUIC: renamed c->qs to c->quic.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 10 Nov 2020 19:40:00 +0000
parents e0947c952d43
children 1efee5e4194c
comparison
equal deleted inserted replaced
8629:feec2cc762f6 8630:279ad36f2f4b
75 #define NGX_HTTP_V3_ERR_DECODER_STREAM_ERROR 0x202 75 #define NGX_HTTP_V3_ERR_DECODER_STREAM_ERROR 0x202
76 76
77 77
78 #define ngx_http_v3_get_module_srv_conf(c, module) \ 78 #define ngx_http_v3_get_module_srv_conf(c, module) \
79 ngx_http_get_module_srv_conf( \ 79 ngx_http_get_module_srv_conf( \
80 ((ngx_http_v3_connection_t *) c->qs->parent->data)->hc.conf_ctx, \ 80 ((ngx_http_v3_connection_t *) c->quic->parent->data)->hc.conf_ctx, \
81 module) 81 module)
82 82
83 #define ngx_http_v3_finalize_connection(c, code, reason) \ 83 #define ngx_http_v3_finalize_connection(c, code, reason) \
84 ngx_quic_finalize_connection(c->qs->parent, code, reason) 84 ngx_quic_finalize_connection(c->quic->parent, code, reason)
85 85
86 86
87 typedef struct { 87 typedef struct {
88 ngx_quic_tp_t quic; 88 ngx_quic_tp_t quic;
89 size_t max_field_size; 89 size_t max_field_size;