comparison src/event/ngx_event_quic.c @ 8057:de7d6d943f68 quic

QUIC: fixed format specifiers.
author Sergey Kandaurov <pluknet@nginx.com>
date Wed, 19 Aug 2020 16:00:12 +0300
parents f9b1a4e52597
children fc89d02bdca2
comparison
equal deleted inserted replaced
8056:f9b1a4e52597 8057:de7d6d943f68
3701 { 3701 {
3702 continue; 3702 continue;
3703 } 3703 }
3704 3704
3705 ngx_log_debug3(NGX_LOG_DEBUG_EVENT, c->log, 0, 3705 ngx_log_debug3(NGX_LOG_DEBUG_EVENT, c->log, 0,
3706 "quic pto pnum:%ui pto_count:%ui level:%d", 3706 "quic pto pnum:%uL pto_count:%ui level:%d",
3707 start->pnum, c->quic->pto_count, start->level); 3707 start->pnum, c->quic->pto_count, start->level);
3708 3708
3709 if (ngx_quic_resend_frames(c, ctx, start) != NGX_OK) { 3709 if (ngx_quic_resend_frames(c, ctx, start) != NGX_OK) {
3710 ngx_quic_close_connection(c, NGX_ERROR); 3710 ngx_quic_close_connection(c, NGX_ERROR);
3711 return; 3711 return;
3781 } 3781 }
3782 3782
3783 wait = start->last + thr - now; 3783 wait = start->last + thr - now;
3784 3784
3785 ngx_log_debug4(NGX_LOG_DEBUG_EVENT, c->log, 0, 3785 ngx_log_debug4(NGX_LOG_DEBUG_EVENT, c->log, 0,
3786 "quic detect_lost pnum:%ui thr:%M wait:%i level:%d", 3786 "quic detect_lost pnum:%uL thr:%M wait:%i level:%d",
3787 start->pnum, thr, (ngx_int_t) wait, start->level); 3787 start->pnum, thr, (ngx_int_t) wait, start->level);
3788 3788
3789 if ((ngx_msec_int_t) wait > 0 3789 if ((ngx_msec_int_t) wait > 0
3790 && ctx->largest_ack - start->pnum < NGX_QUIC_PKT_THR) 3790 && ctx->largest_ack - start->pnum < NGX_QUIC_PKT_THR)
3791 { 3791 {