From 04ae8273f64a4f5a771da9b056bcccd1ebf9c7d9 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Mon, 12 Apr 2021 19:55:37 -0700 Subject: session tcp vcl: api to update connection attributes Type: feature Signed-off-by: Florin Coras Change-Id: Ifdd6024daf044751895bb8d2deabad41d3a80c92 --- src/vnet/session/transport.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/vnet/session/transport.c') diff --git a/src/vnet/session/transport.c b/src/vnet/session/transport.c index 4f6ac8b1c48..a420dcdee93 100644 --- a/src/vnet/session/transport.c +++ b/src/vnet/session/transport.c @@ -399,6 +399,17 @@ transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index, } } +int +transport_connection_attribute (transport_proto_t tp, u32 conn_index, + u8 thread_index, u8 is_get, + transport_endpt_attr_t *attr) +{ + if (!tp_vfts[tp].attribute) + return -1; + + return tp_vfts[tp].attribute (conn_index, thread_index, is_get, attr); +} + #define PORT_MASK ((1 << 16)- 1) void -- cgit 1.2.3-korg