comparison src/http/v3/ngx_http_v3_filter_module.c @ 8770:67f0eb150047 quic

HTTP/3: renamed ngx_http_v3_connection_t to ngx_http_v3_session_t.
author Roman Arutyunyan <arut@nginx.com>
date Wed, 05 May 2021 12:54:10 +0300
parents 40d710a66aef
children 557dc6a06ba6
comparison
equal deleted inserted replaced
8769:9ec3e71f8a61 8770:67f0eb150047
773 773
774 static ngx_int_t 774 static ngx_int_t
775 ngx_http_v3_push_resource(ngx_http_request_t *r, ngx_str_t *path, 775 ngx_http_v3_push_resource(ngx_http_request_t *r, ngx_str_t *path,
776 ngx_chain_t ***ll) 776 ngx_chain_t ***ll)
777 { 777 {
778 uint64_t push_id; 778 uint64_t push_id;
779 ngx_int_t rc; 779 ngx_int_t rc;
780 ngx_chain_t *cl; 780 ngx_chain_t *cl;
781 ngx_connection_t *c; 781 ngx_connection_t *c;
782 ngx_http_v3_srv_conf_t *h3scf; 782 ngx_http_v3_session_t *h3c;
783 ngx_http_v3_connection_t *h3c; 783 ngx_http_v3_srv_conf_t *h3scf;
784 784
785 c = r->connection; 785 c = r->connection;
786 h3c = ngx_http_v3_get_session(c); 786 h3c = ngx_http_v3_get_session(c);
787 h3scf = ngx_http_get_module_srv_conf(r, ngx_http_v3_module); 787 h3scf = ngx_http_get_module_srv_conf(r, ngx_http_v3_module);
788 788
836 ngx_pool_t *pool; 836 ngx_pool_t *pool;
837 ngx_connection_t *c, *pc; 837 ngx_connection_t *c, *pc;
838 ngx_http_request_t *r; 838 ngx_http_request_t *r;
839 ngx_http_log_ctx_t *ctx; 839 ngx_http_log_ctx_t *ctx;
840 ngx_http_connection_t *hc; 840 ngx_http_connection_t *hc;
841 ngx_http_v3_session_t *h3c;
841 ngx_http_core_srv_conf_t *cscf; 842 ngx_http_core_srv_conf_t *cscf;
842 ngx_http_v3_connection_t *h3c;
843 843
844 pc = pr->connection; 844 pc = pr->connection;
845 845
846 r = NULL; 846 r = NULL;
847 847