# HG changeset patch # User Vladimir Homutov # Date 1587392284 -10800 # Node ID 4e4485793418d35daae512712fd3804eda7f6367 # Parent 6481427ca3fc766f8ee4a9e8e4c95f1715fa47cb Added MAX_STREAM_DATA stub handler. Currently sending code is ignoring this. diff -r 6481427ca3fc -r 4e4485793418 src/event/ngx_event_quic.c --- a/src/event/ngx_event_quic.c Mon Apr 20 22:25:22 2020 +0300 +++ b/src/event/ngx_event_quic.c Mon Apr 20 17:18:04 2020 +0300 @@ -1290,6 +1290,7 @@ case NGX_QUIC_FT_STOP_SENDING: case NGX_QUIC_FT_PATH_CHALLENGE: case NGX_QUIC_FT_PATH_RESPONSE: + case NGX_QUIC_FT_MAX_STREAM_DATA: /* TODO: handle */ ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, 0, @@ -1298,6 +1299,8 @@ break; default: + ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, 0, + "missing frame handler"); return NGX_ERROR; } }