aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/session/transport.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vnet/session/transport.h')
-rw-r--r--src/vnet/session/transport.h9
1 files changed, 7 insertions, 2 deletions
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 <vnet/vnet.h>
#include <vnet/session/transport_types.h>
+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* */