X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fsession%2Ftransport.h;h=67583d23be04dce2eb1e56868821804777445dd7;hb=04ae8273f64a4f5a771da9b056bcccd1ebf9c7d9;hp=efd2507ed4c4e059f68893016b03f98da0fc4ccf;hpb=7bc714da36bb9badec2ad5bf848c6b90caabad0a;p=vpp.git diff --git a/src/vnet/session/transport.h b/src/vnet/session/transport.h index efd2507ed4c..67583d23be0 100644 --- a/src/vnet/session/transport.h +++ b/src/vnet/session/transport.h @@ -107,13 +107,15 @@ typedef struct _transport_proto_vft u8 *(*format_half_open) (u8 * s, va_list * args); /* - * Properties retrieval + * Properties retrieval/setting */ void (*get_transport_endpoint) (u32 conn_index, u32 thread_index, transport_endpoint_t *tep, u8 is_lcl); void (*get_transport_listener_endpoint) (u32 conn_index, transport_endpoint_t *tep, u8 is_lcl); + int (*attribute) (u32 conn_index, u32 thread_index, u8 is_get, + transport_endpt_attr_t *attr); /* * Properties @@ -145,6 +147,9 @@ void transport_get_endpoint (transport_proto_t tp, u32 conn_index, u8 is_lcl); void transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index, transport_endpoint_t * tep, u8 is_lcl); +int transport_connection_attribute (transport_proto_t tp, u32 conn_index, + u8 thread_index, u8 is_get, + transport_endpt_attr_t *attr); static inline transport_connection_t * transport_get_connection (transport_proto_t tp, u32 conn_index,