Skip to content

Commit

Permalink
QUIC: style.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdounin committed May 11, 2023
1 parent 2ce3eee commit 089d1f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/http/v3/ngx_http_v3.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@
#define ngx_http_v3_get_session(c) ngx_http_quic_get_connection(c)->v3_session

#define ngx_http_v3_get_module_loc_conf(c, module) \
ngx_http_get_module_loc_conf(ngx_http_quic_get_connection(c)->conf_ctx, \
ngx_http_get_module_loc_conf(ngx_http_quic_get_connection(c)->conf_ctx, \
module)

#define ngx_http_v3_get_module_srv_conf(c, module) \
ngx_http_get_module_srv_conf(ngx_http_quic_get_connection(c)->conf_ctx, \
ngx_http_get_module_srv_conf(ngx_http_quic_get_connection(c)->conf_ctx, \
module)

#define ngx_http_v3_finalize_connection(c, code, reason) \
Expand Down
3 changes: 2 additions & 1 deletion src/http/v3/ngx_http_v3_parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,8 @@ ngx_http_v3_parse_field_l(ngx_connection_t *c,

case sw_start:

ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, "http3 parse field l");
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0,
"http3 parse field l");

if (b->pos == b->last) {
return NGX_AGAIN;
Expand Down

0 comments on commit 089d1f6

Please sign in to comment.