From 39d04099467414175803273433c95a96c0276252 Mon Sep 17 00:00:00 2001 From: Aloys Augustin Date: Tue, 9 Apr 2019 11:36:40 +0200 Subject: QUIC: Initial multi stream support To connect a stream, apps should call connect while passing the id of the QUIC connection in the new transport_opts field in session_endpoint_cfg_t. Apps are notified of new streams with their accept callback, which is called each time a peer opens a stream. Change-Id: I0f82ec344db58008d54641553eddec2973768435 Signed-off-by: Aloys Augustin --- src/vnet/session/session_types.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/vnet/session/session_types.h') diff --git a/src/vnet/session/session_types.h b/src/vnet/session/session_types.h index 02dc40ab0cf..32a13cf94f9 100644 --- a/src/vnet/session/session_types.h +++ b/src/vnet/session/session_types.h @@ -42,6 +42,7 @@ typedef struct _session_endpoint_cfg u32 ns_index; u8 original_tp; u8 *hostname; + u64 transport_opts; } session_endpoint_cfg_t; #define SESSION_IP46_ZERO \ -- cgit 1.2.3-korg