diff options
author | Aloys Augustin <aloaugus@cisco.com> | 2019-04-09 11:40:57 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-04-24 14:57:32 +0000 |
commit | 502785b65c40351f62e510a245ccee56084a07f4 (patch) | |
tree | 3ddc2c3f55e4b5b747bbfa5dd2a45efa5bac301b /src/vnet/session-apps/echo_client.h | |
parent | 8e58499690a278a598c9ef7abf47b72fafad7e50 (diff) |
QUIC: Add multi-stream support to internal test apps
Change-Id: Iab07697ef482529e62c11433cffa1f8f894e5bb7
Signed-off-by: Aloys Augustin <aloaugus@cisco.com>
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'src/vnet/session-apps/echo_client.h')
-rw-r--r-- | src/vnet/session-apps/echo_client.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vnet/session-apps/echo_client.h b/src/vnet/session-apps/echo_client.h index b183ed7f2c7..81ffcae77dd 100644 --- a/src/vnet/session-apps/echo_client.h +++ b/src/vnet/session-apps/echo_client.h @@ -74,6 +74,7 @@ typedef struct clib_spinlock_t sessions_lock; u8 **rx_buf; /**< intermediate rx buffers */ u8 *connect_test_data; /**< Pre-computed test data */ + u32 **quic_session_index_by_thread; u32 **connection_index_by_thread; u32 **connections_this_batch_by_thread; /**< active connection batch */ pthread_t client_thread_handle; @@ -101,6 +102,7 @@ typedef struct u8 no_output; u8 test_bytes; u8 test_failed; + u8 transport_proto; vlib_main_t *vlib_main; } echo_client_main_t; |