comparison src/event/quic/ngx_event_quic.c @ 8744:fa24745b8c06 quic

QUIC: fixed debug message macro.
author Vladimir Homutov <vl@nginx.com>
date Mon, 05 Apr 2021 11:35:46 +0300
parents 76f476ce4d31
children 0b94e2df6389
comparison
equal deleted inserted replaced
8743:168cc2a0f0b6 8744:fa24745b8c06
1346 len = ngx_quic_send(c, res.data, res.len); 1346 len = ngx_quic_send(c, res.data, res.len);
1347 if (len == NGX_ERROR) { 1347 if (len == NGX_ERROR) {
1348 return NGX_ERROR; 1348 return NGX_ERROR;
1349 } 1349 }
1350 1350
1351 ngx_log_debug(NGX_LOG_DEBUG_EVENT, c->log, 0, 1351 ngx_log_debug1(NGX_LOG_DEBUG_EVENT, c->log, 0,
1352 "quic retry packet sent to %xV", &pkt.dcid); 1352 "quic retry packet sent to %xV", &pkt.dcid);
1353 1353
1354 /* 1354 /*
1355 * quic-transport 17.2.5.1: A server MUST NOT send more than one Retry 1355 * quic-transport 17.2.5.1: A server MUST NOT send more than one Retry
1356 * packet in response to a single UDP datagram. 1356 * packet in response to a single UDP datagram.
1357 * NGX_DONE will stop quic_input() from processing further 1357 * NGX_DONE will stop quic_input() from processing further