comparison src/http/v3/ngx_http_v3_tables.c @ 8767:33ec97749b5f quic

HTTP/3: moved Stream Cancellation stub to ngx_http_v3_streams.c.
author Roman Arutyunyan <arut@nginx.com>
date Wed, 05 May 2021 15:15:17 +0300
parents 70701edfc5d4
children 40d710a66aef
comparison
equal deleted inserted replaced
8766:70701edfc5d4 8767:33ec97749b5f
395 return NGX_HTTP_V3_ERR_DECODER_STREAM_ERROR; 395 return NGX_HTTP_V3_ERR_DECODER_STREAM_ERROR;
396 } 396 }
397 397
398 398
399 ngx_int_t 399 ngx_int_t
400 ngx_http_v3_cancel_stream(ngx_connection_t *c, ngx_uint_t stream_id)
401 {
402 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0,
403 "http3 cancel stream %ui", stream_id);
404
405 /* we do not use dynamic tables */
406
407 return NGX_OK;
408 }
409
410
411 ngx_int_t
412 ngx_http_v3_inc_insert_count(ngx_connection_t *c, ngx_uint_t inc) 400 ngx_http_v3_inc_insert_count(ngx_connection_t *c, ngx_uint_t inc)
413 { 401 {
414 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0, 402 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0,
415 "http3 increment insert count %ui", inc); 403 "http3 increment insert count %ui", inc);
416 404