comparison src/http/ngx_http_request.c @ 7676:b761ca7df7d0 quic

Fix build.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 12 Mar 2020 18:08:26 +0300
parents 4ae9ac69ab93
children 6bc18966b8c1
comparison
equal deleted inserted replaced
7675:36fe31ce9582 7676:b761ca7df7d0
393 static void 393 static void
394 ngx_http_quic_stream_handler(ngx_connection_t *c) 394 ngx_http_quic_stream_handler(ngx_connection_t *c)
395 { 395 {
396 ngx_quic_stream_t *qs = c->qs; 396 ngx_quic_stream_t *qs = c->qs;
397 397
398 printf("quic stream: 0x%lx\n", qs->id); 398 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0,
399 "quic stream: 0x%uXL", qs->id);
399 } 400 }
400 401
401 402
402 static void 403 static void
403 ngx_http_wait_request_handler(ngx_event_t *rev) 404 ngx_http_wait_request_handler(ngx_event_t *rev)