diff options
author | Roman Arutyunyan <arut@nginx.com> | 2021-05-05 15:15:17 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2021-05-05 15:15:17 +0300 |
commit | a40fa4aa9640a574cc6413dabada256f837d8cb9 (patch) | |
tree | 7fade94510e198fb230bf9e15b143369e027a51e /src/http/v3/ngx_http_v3_streams.c | |
parent | bbbc80465bae44c4f9a1236683addbc51e7a8710 (diff) | |
download | nginx-a40fa4aa9640a574cc6413dabada256f837d8cb9.tar.gz nginx-a40fa4aa9640a574cc6413dabada256f837d8cb9.zip |
HTTP/3: moved Stream Cancellation stub to ngx_http_v3_streams.c.
Diffstat (limited to 'src/http/v3/ngx_http_v3_streams.c')
-rw-r--r-- | src/http/v3/ngx_http_v3_streams.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/http/v3/ngx_http_v3_streams.c b/src/http/v3/ngx_http_v3_streams.c index f2036982f..b300dcc01 100644 --- a/src/http/v3/ngx_http_v3_streams.c +++ b/src/http/v3/ngx_http_v3_streams.c @@ -891,3 +891,15 @@ ngx_http_v3_cancel_push(ngx_connection_t *c, uint64_t push_id) return NGX_OK; } + + +ngx_int_t +ngx_http_v3_cancel_stream(ngx_connection_t *c, ngx_uint_t stream_id) +{ + ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0, + "http3 cancel stream %ui", stream_id); + + /* we do not use dynamic tables */ + + return NGX_OK; +} |