diff options
| author | Vladimir Homutov <vl@nginx.com> | 2021-09-23 16:25:49 +0300 |
|---|---|---|
| committer | Vladimir Homutov <vl@nginx.com> | 2021-09-23 16:25:49 +0300 |
| commit | f5d0c6db674b9c40f995559051e8847157229b57 (patch) | |
| tree | 8e9e64fc894b90a83c31ed5c9125a940ee04a486 /src/event/quic/ngx_event_quic.h | |
| parent | bbd05ae252bce1907173d13c6e48d1bed71cd9ea (diff) | |
| download | nginx-f5d0c6db674b9c40f995559051e8847157229b57.tar.gz nginx-f5d0c6db674b9c40f995559051e8847157229b57.tar.bz2 | |
QUIC: added shutdown support in stream proxy.
Diffstat (limited to 'src/event/quic/ngx_event_quic.h')
| -rw-r--r-- | src/event/quic/ngx_event_quic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/event/quic/ngx_event_quic.h b/src/event/quic/ngx_event_quic.h index dda1e385e..47359fe85 100644 --- a/src/event/quic/ngx_event_quic.h +++ b/src/event/quic/ngx_event_quic.h @@ -92,6 +92,7 @@ void ngx_quic_finalize_connection(ngx_connection_t *c, ngx_uint_t err, void ngx_quic_shutdown_connection(ngx_connection_t *c, ngx_uint_t err, const char *reason); ngx_int_t ngx_quic_reset_stream(ngx_connection_t *c, ngx_uint_t err); +ngx_int_t ngx_quic_shutdown_stream(ngx_connection_t *c, int how); uint32_t ngx_quic_version(ngx_connection_t *c); ngx_int_t ngx_quic_handle_read_event(ngx_event_t *rev, ngx_uint_t flags); ngx_int_t ngx_quic_handle_write_event(ngx_event_t *wev, size_t lowat); |
