diff options
author | Florin Coras <fcoras@cisco.com> | 2020-11-06 16:59:08 -0800 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-11-09 16:04:47 +0000 |
commit | 8c4fa01d1360cd5315e671de96dfeff7dae246f5 (patch) | |
tree | 6a6c112be3060b938294241b22b136db847b579a /src/vnet/session/transport.h | |
parent | 2008e314537500975acbd666e38d3fa6e7261bf5 (diff) |
session: delegate fifo ooo lookup init to transports
Fifo chunk ooo lookup data structures are private (not allocated on
segment heap) and should only be initialized by transport protocols that
require out-of-order enqueues/dequeues (like tcp).
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Iaa15d6850385bf903cc501c54c2752e8e811449e
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 9c873b12caf..c8d4e27be66 100644 --- a/src/vnet/session/transport.h +++ b/src/vnet/session/transport.h @@ -217,6 +217,7 @@ transport_connection_is_cless (transport_connection_t * tc) } void transport_connection_reschedule (transport_connection_t * tc); +void transport_fifos_init_ooo (transport_connection_t * tc); /** * Register transport virtual function table. |