comparison src/event/quic/ngx_event_quic.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 d59277dd3d8c
children 58afcd72446f
comparison
equal deleted inserted replaced
9143:48691bab4474 9144:bba136612fe4
1011 */ 1011 */
1012 ngx_quic_discard_ctx(c, ssl_encryption_initial); 1012 ngx_quic_discard_ctx(c, ssl_encryption_initial);
1013 1013
1014 if (!qc->path->validated) { 1014 if (!qc->path->validated) {
1015 qc->path->validated = 1; 1015 qc->path->validated = 1;
1016 qc->path->limited = 0;
1017 ngx_quic_path_dbg(c, "in handshake", qc->path); 1016 ngx_quic_path_dbg(c, "in handshake", qc->path);
1018 ngx_post_event(&qc->push, &ngx_posted_events); 1017 ngx_post_event(&qc->push, &ngx_posted_events);
1019 } 1018 }
1020 } 1019 }
1021 1020