diff options
author | Aloys Augustin <aloaugus@cisco.com> | 2020-04-08 22:15:25 +0200 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2020-04-10 17:04:46 +0000 |
commit | 92e131468bd9acd5d0fc6504723b8e7f81a3213e (patch) | |
tree | 90d3fac4750e2774f1e771ca3a812f6443a5148e /src/plugins/quic/quic.h | |
parent | bc1a1a7347d689aa7043d4d7f15a7db657230216 (diff) |
quic: fix clean stream close
Properly close the stream sending side instead of resetting the entire
stream.
Change-Id: I2daca7e507daa7bf9cd6a27fa8828a9ea7d175f9
Type: fix
Signed-off-by: Aloys Augustin <aloaugus@cisco.com>
Diffstat (limited to 'src/plugins/quic/quic.h')
-rw-r--r-- | src/plugins/quic/quic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/quic/quic.h b/src/plugins/quic/quic.h index 1e83d9235d7..a576650a0c6 100644 --- a/src/plugins/quic/quic.h +++ b/src/plugins/quic/quic.h @@ -154,6 +154,7 @@ typedef struct quic_ctx_ struct { /** STREAM ctx case */ quicly_stream_t *stream; + u64 bytes_written; u32 quic_connection_ctx_id; u8 _sctx_end_marker; /* Leave this at the end */ }; |