diff options
| author | Vladimir Homutov <vl@nginx.com> | 2020-04-20 17:18:04 +0300 |
|---|---|---|
| committer | Vladimir Homutov <vl@nginx.com> | 2020-04-20 17:18:04 +0300 |
| commit | 07699053c03de69b5482c4cc2547993fae3982e6 (patch) | |
| tree | 0f4cdeb9a4b08198854e55105e70b214de924d6c /src | |
| parent | baacacd845f8f9408e4515359021df23f7468352 (diff) | |
| download | nginx-07699053c03de69b5482c4cc2547993fae3982e6.tar.gz nginx-07699053c03de69b5482c4cc2547993fae3982e6.tar.bz2 | |
Added MAX_STREAM_DATA stub handler.
Currently sending code is ignoring this.
Diffstat (limited to 'src')
| -rw-r--r-- | src/event/ngx_event_quic.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/event/ngx_event_quic.c b/src/event/ngx_event_quic.c index 2dd415f99..f3b76b3ee 100644 --- a/src/event/ngx_event_quic.c +++ b/src/event/ngx_event_quic.c @@ -1290,6 +1290,7 @@ ngx_quic_payload_handler(ngx_connection_t *c, ngx_quic_header_t *pkt) 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 @@ ngx_quic_payload_handler(ngx_connection_t *c, ngx_quic_header_t *pkt) break; default: + ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, 0, + "missing frame handler"); return NGX_ERROR; } } |
