comparison src/http/v3/ngx_http_v3.c @ 8796:1fec68e322d0 quic

HTTP/3: client GOAWAY support.
author Roman Arutyunyan <arut@nginx.com>
date Fri, 11 Jun 2021 13:24:24 +0300
parents 6e2c23481abb
children 72b304f6207c
comparison
equal deleted inserted replaced
8795:278ab0ed24f2 8796:1fec68e322d0
35 if (h3c == NULL) { 35 if (h3c == NULL) {
36 return NGX_ERROR; 36 return NGX_ERROR;
37 } 37 }
38 38
39 h3c->max_push_id = (uint64_t) -1; 39 h3c->max_push_id = (uint64_t) -1;
40 h3c->goaway_push_id = (uint64_t) -1;
40 41
41 ngx_queue_init(&h3c->blocked); 42 ngx_queue_init(&h3c->blocked);
42 ngx_queue_init(&h3c->pushing); 43 ngx_queue_init(&h3c->pushing);
43 44
44 h3c->keepalive.log = pc->log; 45 h3c->keepalive.log = pc->log;