comparison src/event/quic/ngx_event_quic_migration.c @ 9029:28fc35b71d75 quic

QUIC: "info" logging level on insufficient client connection ids. Apparently, this error is reported on NAT rebinding if client didn't previously send NEW_CONNECTION_ID to supply additional connection ids.
author Sergey Kandaurov <pluknet@nginx.com>
date Fri, 30 Sep 2022 17:24:47 +0400
parents c2f5d79cde64
children c6db94ec3841
comparison
equal deleted inserted replaced
9028:98e94553ae51 9029:28fc35b71d75
307 } 307 }
308 308
309 /* new path requires new client id */ 309 /* new path requires new client id */
310 cid = ngx_quic_next_client_id(c); 310 cid = ngx_quic_next_client_id(c);
311 if (cid == NULL) { 311 if (cid == NULL) {
312 ngx_log_error(NGX_LOG_ERR, c->log, 0, 312 ngx_log_error(NGX_LOG_INFO, c->log, 0,
313 "quic no available client ids for new path"); 313 "quic no available client ids for new path");
314 /* stop processing of this datagram */ 314 /* stop processing of this datagram */
315 return NGX_DONE; 315 return NGX_DONE;
316 } 316 }
317 317