comparison src/event/ngx_event_quic_transport.c @ 8017:b0e74a54c98b quic

QUIC: consistent Stream ID logging format.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 28 Jul 2020 17:11:25 +0300
parents d0ac4449a07f
children fc89d02bdca2
comparison
equal deleted inserted replaced
8016:affb0245e291 8017:b0e74a54c98b
932 if (p == NULL) { 932 if (p == NULL) {
933 goto error; 933 goto error;
934 } 934 }
935 935
936 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, pkt->log, 0, 936 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, pkt->log, 0,
937 "quic frame in: MAX_STREAM_DATA id:%uL limit:%uL", 937 "quic frame in: MAX_STREAM_DATA id:0x%xL limit:%uL",
938 f->u.max_stream_data.id, 938 f->u.max_stream_data.id,
939 f->u.max_stream_data.limit); 939 f->u.max_stream_data.limit);
940 break; 940 break;
941 941
942 case NGX_QUIC_FT_DATA_BLOCKED: 942 case NGX_QUIC_FT_DATA_BLOCKED:
963 goto error; 963 goto error;
964 } 964 }
965 965
966 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, pkt->log, 0, 966 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, pkt->log, 0,
967 "quic frame in: STREAM_DATA_BLOCKED" 967 "quic frame in: STREAM_DATA_BLOCKED"
968 " id:%uL limit:%uL", 968 " id:0x%xL limit:%uL",
969 f->u.stream_data_blocked.id, 969 f->u.stream_data_blocked.id,
970 f->u.stream_data_blocked.limit); 970 f->u.stream_data_blocked.limit);
971 break; 971 break;
972 972
973 case NGX_QUIC_FT_RETIRE_CONNECTION_ID: 973 case NGX_QUIC_FT_RETIRE_CONNECTION_ID: