diff options
author | Florin Coras <fcoras@cisco.com> | 2018-06-10 14:41:23 -0700 |
---|---|---|
committer | Marco Varlese <marco.varlese@suse.de> | 2018-06-11 14:08:20 +0000 |
commit | 40903ac34f89d9e2ad775e98b7bcec5b7feb0207 (patch) | |
tree | 550a152e6a9359248ec50ffbeb0063b564bbcb48 /src/vnet/session/transport.h | |
parent | d723161e038d00e59766aa67a6a0dcc350227e4b (diff) |
udp: fix for multiple workers and add test
Since the main thread is not used for session polling anymore, when vpp
is started with multiple wokers, allocate connections on the first. Also
add a simple udp make test.
Change-Id: Id869f5d89e0fced51048f0384fa86a5022258b7c
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/session/transport.h')
-rw-r--r-- | src/vnet/session/transport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/session/transport.h b/src/vnet/session/transport.h index 8340fd859ac..e29f3ca9557 100644 --- a/src/vnet/session/transport.h +++ b/src/vnet/session/transport.h @@ -131,6 +131,7 @@ int transport_alloc_local_endpoint (u8 proto, transport_endpoint_t * rmt, ip46_address_t * lcl_addr, u16 * lcl_port); void transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port); +u8 transport_protocol_is_cl (transport_proto_t tp); void transport_init (void); #endif /* VNET_VNET_URI_TRANSPORT_H_ */ |