From caa7acf5c55a78ef4f7addfb94da0ad788f59a75 Mon Sep 17 00:00:00 2001 From: Nathan Skrzypczak Date: Wed, 2 Oct 2019 10:02:05 +0200 Subject: 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 --- src/plugins/quic/quic.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/plugins/quic/quic.h') 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 -- cgit 1.2.3-korg