comparison src/event/quic/ngx_event_quic_ssl.c @ 8836:01bd1c0de1f4 quic

QUIC: removed duplicate logging of Stateless Reset Token.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 24 Aug 2021 14:40:33 +0300
parents fe919fd63b0b
children 4df9795fb77f
comparison
equal deleted inserted replaced
8835:d8d48c977b0f 8836:01bd1c0de1f4
523 != NGX_OK) 523 != NGX_OK)
524 { 524 {
525 return NGX_ERROR; 525 return NGX_ERROR;
526 } 526 }
527 527
528 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, c->log, 0,
529 "quic stateless reset token %*xs",
530 (size_t) NGX_QUIC_SR_TOKEN_LEN, qc->tp.sr_token);
531
532 len = ngx_quic_create_transport_params(NULL, NULL, &qc->tp, &clen); 528 len = ngx_quic_create_transport_params(NULL, NULL, &qc->tp, &clen);
533 /* always succeeds */ 529 /* always succeeds */
534 530
535 p = ngx_pnalloc(c->pool, len); 531 p = ngx_pnalloc(c->pool, len);
536 if (p == NULL) { 532 if (p == NULL) {