diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2019-10-02 10:02:05 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-10-08 01:11:23 +0000 |
commit | caa7acf5c55a78ef4f7addfb94da0ad788f59a75 (patch) | |
tree | 148aaa1ba4add1a3d072b9a2f906d42ba28c9304 /src/plugins/quic/quic.h | |
parent | 859b59133c143b09fed86af1d409d320fa45424f (diff) |
session: add is_migrating flag
Type: fix
Add SESSION_F_IS_MIGRATING flag for session. It is set by the session
layer before poking the transport for migration. It's the transport
responsibility to unset the flag & act apropriatly if RX happens on
a migrating session.
Change-Id: Ie722917f1cf9344d8f041cad4ed8b064fb5853b6
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.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 d26ad37a01b..dacf07a14ad 100644 --- a/src/plugins/quic/quic.h +++ b/src/plugins/quic/quic.h @@ -122,6 +122,7 @@ typedef struct quic_ctx_ u32 parent_app_wrk_id; u32 parent_app_id; u8 flags; + quicly_context_t *quicly_ctx; } quic_ctx_t; /* Make sure our custom fields don't overlap with the fields we use in |