]> git.kaiwu.me - nginx.git/commitdiff
QUIC: consistent Stream ID logging format.
authorSergey Kandaurov <pluknet@nginx.com>
Tue, 28 Jul 2020 14:11:25 +0000 (17:11 +0300)
committerSergey Kandaurov <pluknet@nginx.com>
Tue, 28 Jul 2020 14:11:25 +0000 (17:11 +0300)
src/event/ngx_event_quic.c
src/event/ngx_event_quic_transport.c

index a42bd50b9e9bc750cceaaf30a1808771edb33fb6..6a53ef9f4913c49ea922bc596b0e21662f4af422 100644 (file)
@@ -3124,7 +3124,7 @@ ngx_quic_handle_stream_data_blocked_frame(ngx_connection_t *c,
 
     if (sn == NULL) {
         ngx_log_error(NGX_LOG_INFO, c->log, 0,
-                      "quic unknown stream id:%uL", f->id);
+                      "quic unknown stream id:0x%xL", f->id);
         return NGX_ERROR;
     }
 
@@ -3141,7 +3141,7 @@ ngx_quic_handle_stream_data_blocked_frame(ngx_connection_t *c,
     frame->u.max_stream_data.id = f->id;
     frame->u.max_stream_data.limit = n;
 
-    ngx_sprintf(frame->info, "MAX_STREAM_DATA id:%d limit:%d level=%d",
+    ngx_sprintf(frame->info, "MAX_STREAM_DATA id:0x%xL limit:%d level=%d",
                 (int) frame->u.max_stream_data.id,
                 (int) frame->u.max_stream_data.limit,
                 frame->level);
@@ -3173,7 +3173,8 @@ ngx_quic_handle_max_stream_data_frame(ngx_connection_t *c,
     sn = ngx_quic_find_stream(&qc->streams.tree, f->id);
 
     if (sn == NULL) {
-        ngx_log_error(NGX_LOG_INFO, c->log, 0, "unknown stream id:%uL", f->id);
+        ngx_log_error(NGX_LOG_INFO, c->log, 0,
+                      "unknown stream id:0x%xL", f->id);
 
         if (f->id & NGX_QUIC_STREAM_SERVER_INITIATED) {
             qc->error = NGX_QUIC_ERR_STREAM_STATE_ERROR;
@@ -3786,7 +3787,7 @@ ngx_quic_open_stream(ngx_connection_t *c, ngx_uint_t bidi)
              | NGX_QUIC_STREAM_SERVER_INITIATED;
 
         ngx_log_debug3(NGX_LOG_DEBUG_EVENT, c->log, 0,
-                       "quic creating server bidi stream %uL/%uL id:%uL",
+                       "quic creating server bidi stream %uL/%uL id:0x%xL",
                        qc->streams.server_streams_bidi,
                        qc->streams.server_max_streams_bidi, id);
 
@@ -3808,7 +3809,7 @@ ngx_quic_open_stream(ngx_connection_t *c, ngx_uint_t bidi)
              | NGX_QUIC_STREAM_UNIDIRECTIONAL;
 
         ngx_log_debug3(NGX_LOG_DEBUG_EVENT, c->log, 0,
-                       "quic creating server uni stream %uL/%uL id:%uL",
+                       "quic creating server uni stream %uL/%uL id:0x%xL",
                        qc->streams.server_streams_uni,
                        qc->streams.server_max_streams_uni, id);
 
@@ -3886,7 +3887,7 @@ ngx_quic_create_stream(ngx_connection_t *c, uint64_t id, size_t rcvbuf_size)
     ngx_quic_connection_t  *qc;
 
     ngx_log_debug1(NGX_LOG_DEBUG_EVENT, c->log, 0,
-                   "quic stream id 0x%uL create", id);
+                   "quic stream id 0x%xL create", id);
 
     qc = c->quic;
 
@@ -4044,7 +4045,8 @@ ngx_quic_stream_recv(ngx_connection_t *c, u_char *buf, size_t size)
         frame->u.max_stream_data.limit = qs->fs.received + (b->pos - b->start)
                                          + (b->end - b->last);
 
-        ngx_sprintf(frame->info, "MAX_STREAM_DATA id:%d limit:%d l=%d on recv",
+        ngx_sprintf(frame->info,
+                    "MAX_STREAM_DATA id:0x%xL limit:%d l=%d on recv",
                     (int) frame->u.max_stream_data.id,
                     (int) frame->u.max_stream_data.limit,
                     frame->level);
index f1fc094498549a1c5b18dbbce8390f59651cf64c..dd50ba390493dae288bf41e3b9bf3f1bdf321564 100644 (file)
@@ -934,7 +934,7 @@ ngx_quic_parse_frame(ngx_quic_header_t *pkt, u_char *start, u_char *end,
         }
 
         ngx_log_debug2(NGX_LOG_DEBUG_EVENT, pkt->log, 0,
-                       "quic frame in: MAX_STREAM_DATA  id:%uL limit:%uL",
+                       "quic frame in: MAX_STREAM_DATA id:0x%xL limit:%uL",
                        f->u.max_stream_data.id,
                        f->u.max_stream_data.limit);
         break;
@@ -965,7 +965,7 @@ ngx_quic_parse_frame(ngx_quic_header_t *pkt, u_char *start, u_char *end,
 
         ngx_log_debug2(NGX_LOG_DEBUG_EVENT, pkt->log, 0,
                        "quic frame in: STREAM_DATA_BLOCKED"
-                       " id:%uL limit:%uL",
+                       " id:0x%xL limit:%uL",
                        f->u.stream_data_blocked.id,
                        f->u.stream_data_blocked.limit);
         break;