FD.io VPP
v20.01-48-g3e0dafb74
Vector Packet Processing
|
Go to the source code of this file.
Data Structures | |
struct | transport_endpoint_ |
struct | transport_endpoint_pair_ |
Macros | |
#define | TRANSPORT_MAX_HDRS_LEN 140 /* Max number of bytes for headers */ |
#define | TRANSPORT_CONN_ID_LEN 44 |
#define | c_lcl_ip connection.lcl_ip |
Macros for 'derived classes' where base is named "connection". More... | |
#define | c_rmt_ip connection.rmt_ip |
#define | c_lcl_ip4 connection.lcl_ip.ip4 |
#define | c_rmt_ip4 connection.rmt_ip.ip4 |
#define | c_lcl_ip6 connection.lcl_ip.ip6 |
#define | c_rmt_ip6 connection.rmt_ip.ip6 |
#define | c_lcl_port connection.lcl_port |
#define | c_rmt_port connection.rmt_port |
#define | c_proto connection.proto |
#define | c_fib_index connection.fib_index |
#define | c_s_index connection.s_index |
#define | c_c_index connection.c_index |
#define | c_is_ip4 connection.is_ip4 |
#define | c_thread_index connection.thread_index |
#define | c_elog_track connection.elog_track |
#define | c_cc_stat_tstamp connection.cc_stat_tstamp |
#define | c_rmt_fei connection.rmt_fei |
#define | c_rmt_dpo connection.rmt_dpo |
#define | c_opaque_id connection.opaque_conn_id |
#define | c_stats connection.stats |
#define | c_pacer connection.pacer |
#define | c_flags connection.flags |
#define | foreach_transport_proto |
#define | foreach_transport_endpoint_fields |
fib table endpoint is associated with More... | |
#define | foreach_transport_endpoint_cfg_fields |
#define | ENDPOINT_INVALID_INDEX ((u32)~0) |
Typedefs | |
typedef enum transport_dequeue_type_ | transport_tx_fn_type_t |
typedef enum transport_service_type_ | transport_service_type_t |
typedef enum transport_connection_flags_ | transport_connection_flags_t |
typedef struct _spacer | spacer_t |
typedef struct _transport_connection | transport_connection_t |
typedef enum _transport_proto | transport_proto_t |
typedef struct transport_endpoint_ | transport_endpoint_t |
typedef struct transport_endpoint_pair_ | transport_endpoint_cfg_t |
typedef clib_bihash_24_8_t | transport_endpoint_table_t |
Enumerations | |
enum | transport_dequeue_type_ { TRANSPORT_TX_PEEK, TRANSPORT_TX_DEQUEUE, TRANSPORT_TX_INTERNAL, TRANSPORT_TX_DGRAM, TRANSPORT_TX_N_FNS } |
enum | transport_service_type_ { TRANSPORT_SERVICE_VC, TRANSPORT_SERVICE_CL, TRANSPORT_SERVICE_APP, TRANSPORT_N_SERVICES } |
enum | transport_connection_flags_ { TRANSPORT_CONNECTION_F_IS_TX_PACED = 1 << 0, TRANSPORT_CONNECTION_F_NO_LOOKUP = 1 << 1 } |
Functions | |
STATIC_ASSERT (sizeof(transport_connection_t)<=128, "moved into 3rd cache line") | |
u8 * | format_transport_proto (u8 *s, va_list *args) |
u8 * | format_transport_proto_short (u8 *s, va_list *args) |
u8 * | format_transport_connection (u8 *s, va_list *args) |
u8 * | format_transport_listen_connection (u8 *s, va_list *args) |
u8 * | format_transport_half_open_connection (u8 *s, va_list *args) |
uword | unformat_transport_proto (unformat_input_t *input, va_list *args) |
static u8 | transport_connection_fib_proto (transport_connection_t *tc) |
static u8 | 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) |
Variables | |
update conn id | len |
#define c_c_index connection.c_index |
Definition at line 124 of file transport_types.h.
#define c_cc_stat_tstamp connection.cc_stat_tstamp |
Definition at line 128 of file transport_types.h.
#define c_elog_track connection.elog_track |
Definition at line 127 of file transport_types.h.
#define c_fib_index connection.fib_index |
Definition at line 122 of file transport_types.h.
#define c_flags connection.flags |
Definition at line 134 of file transport_types.h.
#define c_is_ip4 connection.is_ip4 |
Definition at line 125 of file transport_types.h.
#define c_lcl_ip connection.lcl_ip |
Macros for 'derived classes' where base is named "connection".
Definition at line 113 of file transport_types.h.
#define c_lcl_ip4 connection.lcl_ip.ip4 |
Definition at line 115 of file transport_types.h.
#define c_lcl_ip6 connection.lcl_ip.ip6 |
Definition at line 117 of file transport_types.h.
#define c_lcl_port connection.lcl_port |
Definition at line 119 of file transport_types.h.
#define c_opaque_id connection.opaque_conn_id |
Definition at line 131 of file transport_types.h.
#define c_pacer connection.pacer |
Definition at line 133 of file transport_types.h.
#define c_proto connection.proto |
Definition at line 121 of file transport_types.h.
#define c_rmt_dpo connection.rmt_dpo |
Definition at line 130 of file transport_types.h.
#define c_rmt_fei connection.rmt_fei |
Definition at line 129 of file transport_types.h.
#define c_rmt_ip connection.rmt_ip |
Definition at line 114 of file transport_types.h.
#define c_rmt_ip4 connection.rmt_ip.ip4 |
Definition at line 116 of file transport_types.h.
#define c_rmt_ip6 connection.rmt_ip.ip6 |
Definition at line 118 of file transport_types.h.
#define c_rmt_port connection.rmt_port |
Definition at line 120 of file transport_types.h.
#define c_s_index connection.s_index |
Definition at line 123 of file transport_types.h.
#define c_stats connection.stats |
Definition at line 132 of file transport_types.h.
#define c_thread_index connection.thread_index |
Definition at line 126 of file transport_types.h.
#define ENDPOINT_INVALID_INDEX ((u32)~0) |
Definition at line 198 of file transport_types.h.
#define foreach_transport_endpoint_cfg_fields |
Definition at line 185 of file transport_types.h.
#define foreach_transport_endpoint_fields |
fib table endpoint is associated with
Definition at line 170 of file transport_types.h.
#define foreach_transport_proto |
Definition at line 145 of file transport_types.h.
#define TRANSPORT_CONN_ID_LEN 44 |
Definition at line 60 of file transport_types.h.
#define TRANSPORT_MAX_HDRS_LEN 140 /* Max number of bytes for headers */ |
Definition at line 23 of file transport_types.h.
typedef struct _spacer spacer_t |
typedef enum transport_connection_flags_ transport_connection_flags_t |
typedef struct _transport_connection transport_connection_t |
typedef struct transport_endpoint_pair_ transport_endpoint_cfg_t |
typedef struct transport_endpoint_ transport_endpoint_t |
typedef clib_bihash_24_8_t transport_endpoint_table_t |
Definition at line 196 of file transport_types.h.
typedef enum _transport_proto transport_proto_t |
typedef enum transport_service_type_ transport_service_type_t |
typedef enum transport_dequeue_type_ transport_tx_fn_type_t |
Enumerator | |
---|---|
TRANSPORT_CONNECTION_F_IS_TX_PACED | |
TRANSPORT_CONNECTION_F_NO_LOOKUP | Don't register connection in lookup Does not apply to local apps and transports using the network layer (udp/tcp) |
Definition at line 43 of file transport_types.h.
Definition at line 26 of file transport_types.h.
Enumerator | |
---|---|
TRANSPORT_SERVICE_VC | virtual circuit service |
TRANSPORT_SERVICE_CL | connectionless service |
TRANSPORT_SERVICE_APP | app transport service |
TRANSPORT_N_SERVICES |
Definition at line 35 of file transport_types.h.
Definition at line 84 of file transport.c.
Definition at line 125 of file transport.c.
Definition at line 111 of file transport.c.
Definition at line 46 of file transport.c.
Definition at line 65 of file transport.c.
STATIC_ASSERT | ( | sizeof(transport_connection_t)<= | 128, |
"moved into 3rd cache line" | |||
) |
|
inlinestatic |
Definition at line 201 of file transport_types.h.
|
inlinestatic |
Definition at line 207 of file transport_types.h.
u8 transport_half_open_has_fifos | ( | transport_proto_t | tp | ) |
u8 transport_protocol_is_cl | ( | 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 | ) |
uword unformat_transport_proto | ( | unformat_input_t * | input, |
va_list * | args | ||
) |
Definition at line 156 of file transport.c.
update conn id len |
Definition at line 138 of file transport_types.h.