comparison src/event/quic/ngx_event_quic_socket.c @ 9144:bba136612fe4

QUIC: removed path->limited flag. Its value is the opposite of path->validated.
author Roman Arutyunyan <arut@nginx.com>
date Thu, 06 Jul 2023 17:49:01 +0400
parents adcc6d8acfd4
children 8f7e6d8c061e
comparison
equal deleted inserted replaced
9143:48691bab4474 9144:bba136612fe4
80 80
81 qc->path->tag = NGX_QUIC_PATH_ACTIVE; 81 qc->path->tag = NGX_QUIC_PATH_ACTIVE;
82 82
83 if (pkt->validated) { 83 if (pkt->validated) {
84 qc->path->validated = 1; 84 qc->path->validated = 1;
85 qc->path->limited = 0;
86 } 85 }
87 86
88 ngx_quic_path_dbg(c, "set active", qc->path); 87 ngx_quic_path_dbg(c, "set active", qc->path);
89 88
90 tmp = ngx_pcalloc(c->pool, sizeof(ngx_quic_socket_t)); 89 tmp = ngx_pcalloc(c->pool, sizeof(ngx_quic_socket_t));