16 #ifndef SRC_VNET_SESSION_TRANSPORT_H_ 17 #define SRC_VNET_SESSION_TRANSPORT_H_ 26 typedef struct _transport_proto_vft
32 u32 (*stop_listen) (
u32 conn_index);
34 void (*close) (
u32 conn_index,
u32 thread_index);
46 void (*update_time) (
f64 time_now,
u8 thread_index);
48 int (*custom_tx) (
void *session);
60 u8 *(*format_connection) (
u8 * s, va_list * args);
61 u8 *(*format_listener) (
u8 * s, va_list * args);
62 u8 *(*format_half_open) (
u8 * s, va_list * args);
74 #define transport_proto_foreach(VAR, BODY) \ 76 for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \ 77 if (tp_vfts[VAR].push_header != 0) \ 78 do { BODY; } while (0); \ 93 return tp_vfts[tp].get_connection (conn_index, thread_index);
99 return tp_vfts[tp].get_listener (conn_index);
105 return tp_vfts[tp].get_half_open (conn_index);
111 return tp_vfts[tp].custom_tx (s);
122 ip46_address_t * lcl_addr,
132 return tc->elog_track.track_index_plus_one - 1;
139 u32 rate_bytes_per_sec,
140 u32 initial_bucket,
u64 time_now);
149 u32 rate_bytes_per_sec,
u32 transport_stop_listen(transport_proto_t tp, u32 conn_index)
static int start_listen(u16 port)
void transport_init(void)
transport_proto_vft_t * tp_vfts
Per-type vector of transport protocol virtual function tables.
void transport_update_time(f64 time_now, u8 thread_index)
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
#define TRANSPORT_CONNECTION_F_IS_TX_PACED
void transport_register_protocol(transport_proto_t transport_proto, const transport_proto_vft_t *vft, fib_protocol_t fib_proto, u32 output_node)
Register transport virtual function table.
struct _transport_proto_vft transport_proto_vft_t
u32 transport_connection_snd_space(transport_connection_t *tc, u64 time_now, u16 mss)
Get maximum tx burst allowed for transport connection.
u32 transport_start_listen(transport_proto_t tp, u32 session_index, transport_endpoint_t *tep)
void transport_connection_tx_pacer_update_bytes(transport_connection_t *tc, u32 bytes)
u32 transport_connection_tx_pacer_burst(transport_connection_t *tc, u64 time_now)
static void cleanup(void)
enum transport_service_type_ transport_service_type_t
static u8 transport_connection_is_tx_paced(transport_connection_t *tc)
Check if transport connection is paced.
static transport_connection_t * transport_get_connection(transport_proto_t tp, u32 conn_index, u8 thread_index)
void transport_endpoint_cleanup(u8 proto, ip46_address_t *lcl_ip, u16 port)
void transport_connection_tx_pacer_init(transport_connection_t *tc, u32 rate_bytes_per_sec, u32 initial_bucket)
Initialize tx pacer for connection.
struct _transport_connection transport_connection_t
static u32 transport_elog_track_index(transport_connection_t *tc)
void transport_connection_tx_pacer_update(transport_connection_t *tc, u64 bytes_per_sec)
Update tx pacer pacing rate.
int transport_connect(transport_proto_t tp, transport_endpoint_cfg_t *tep)
enum _transport_proto transport_proto_t
void transport_init_tx_pacers_period(void)
Initialize period for tx pacers.
static int transport_custom_tx(transport_proto_t tp, void *s)
static transport_connection_t * transport_get_half_open(transport_proto_t tp, u32 conn_index)
VLIB buffer representation.
void transport_cleanup(transport_proto_t tp, u32 conn_index, u8 thread_index)
void transport_connection_tx_pacer_reset(transport_connection_t *tc, u32 rate_bytes_per_sec, u32 initial_bucket, u64 time_now)
transport_proto_vft_t * transport_protocol_get_vft(transport_proto_t tp)
Get transport virtual function table.
void transport_close(transport_proto_t tp, u32 conn_index, u8 thread_index)
u8 * format_transport_pacer(u8 *s, va_list *args)
static transport_connection_t * transport_get_listener(transport_proto_t tp, u32 conn_index)
int transport_alloc_local_endpoint(u8 proto, transport_endpoint_cfg_t *rmt, ip46_address_t *lcl_addr, u16 *lcl_port)
void transport_enable_disable(vlib_main_t *vm, u8 is_en)
enum transport_dequeue_type_ transport_tx_fn_type_t
void transport_connection_update_tx_stats(transport_connection_t *tc, u32 bytes)
Update tx byte stats for transport connection.
int transport_alloc_local_port(u8 proto, ip46_address_t *ip)
Allocate local port and add if successful add entry to local endpoint table to mark the pair as used...