X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fsession%2Ftransport_types.h;h=28043b56fe6ca7be3b10dc9f4ff8daec955ccf8a;hb=4fde4ae0363de45d867eb3472e43b89ae34d3bd1;hp=b97955f5671dafbf4c429508179780bdecdefa48;hpb=87b7e3df2b6f0335424c338ee7d61d426ef45904;p=vpp.git diff --git a/src/vnet/session/transport_types.h b/src/vnet/session/transport_types.h index b97955f5671..28043b56fe6 100644 --- a/src/vnet/session/transport_types.h +++ b/src/vnet/session/transport_types.h @@ -159,7 +159,6 @@ STATIC_ASSERT (sizeof (transport_connection_t) <= 128, _(UDP, "udp", "U") \ _(NONE, "ct", "C") \ _(TLS, "tls", "J") \ - _(UDPC, "udpc", "U") \ _(QUIC, "quic", "Q") \ typedef enum _transport_proto @@ -195,6 +194,7 @@ typedef struct transport_endpoint_ typedef enum transport_endpt_cfg_flags_ { TRANSPORT_CFG_F_CONNECTED = 1 << 0, + TRANSPORT_CFG_F_UNIDIRECTIONAL = 1 << 1, } transport_endpt_cfg_flags_t; #define foreach_transport_endpoint_cfg_fields \ @@ -227,7 +227,6 @@ transport_endpoint_fib_proto (transport_endpoint_t * tep) } u8 transport_protocol_is_cl (transport_proto_t tp); -u8 transport_half_open_has_fifos (transport_proto_t tp); transport_service_type_t transport_protocol_service_type (transport_proto_t); transport_tx_fn_type_t transport_protocol_tx_fn_type (transport_proto_t tp);