mirror of
https://github.com/nginx/nginx.git
synced 2025-07-24 22:26:59 +08:00
HTTP/3: moved Stream Cancellation stub to ngx_http_v3_streams.c.
This commit is contained in:
parent
bbbc80465b
commit
a40fa4aa96
@ -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;
|
||||
}
|
||||
|
@ -396,18 +396,6 @@ ngx_http_v3_ack_header(ngx_connection_t *c, ngx_uint_t stream_id)
|
||||
}
|
||||
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
ngx_int_t
|
||||
ngx_http_v3_inc_insert_count(ngx_connection_t *c, ngx_uint_t inc)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user