From e971bc9bab2d1be9e129caa585448bb81dc6541f Mon Sep 17 00:00:00 2001 From: Nathan Skrzypczak Date: Wed, 19 Jun 2019 13:42:37 +0200 Subject: session: Add transport vft protocol options Type: refactor Change-Id: I4e0afc206e4871596c2ed8a6ca00914a379f1526 Signed-off-by: Nathan Skrzypczak --- src/vnet/session/transport.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/vnet/session/transport.h') diff --git a/src/vnet/session/transport.h b/src/vnet/session/transport.h index fadb02d6710..978e3f072b1 100644 --- a/src/vnet/session/transport.h +++ b/src/vnet/session/transport.h @@ -19,6 +19,12 @@ #include #include +typedef struct _transport_options_t +{ + transport_tx_fn_type_t tx_type; + transport_service_type_t service_type; +} transport_options_t; + /* * Transport protocol virtual function table */ @@ -74,8 +80,7 @@ typedef struct _transport_proto_vft /* * Properties */ - transport_tx_fn_type_t tx_type; - transport_service_type_t service_type; + transport_options_t transport_options; } transport_proto_vft_t; /* *INDENT-ON* */ -- cgit 1.2.3-korg