27 #define TCP_TICK 0.001 28 #define THZ (u32) (1/TCP_TICK) 29 #define TCP_TSTAMP_RESOLUTION TCP_TICK 30 #define TCP_PAWS_IDLE 24 * 24 * 60 * 60 * THZ 31 #define TCP_FIB_RECHECK_PERIOD 1 * THZ 32 #define TCP_MAX_OPTION_SPACE 40 33 #define TCP_CC_DATA_SZ 24 35 #define TCP_DUPACK_THRESHOLD 3 36 #define TCP_MAX_RX_FIFO_SIZE 32 << 20 37 #define TCP_MIN_RX_FIFO_SIZE 4 << 10 38 #define TCP_IW_N_SEGMENTS 10 39 #define TCP_ALWAYS_ACK 1 40 #define TCP_USE_SACKS 1 43 #define foreach_tcp_fsm_state \ 46 _(SYN_SENT, "SYN_SENT") \ 47 _(SYN_RCVD, "SYN_RCVD") \ 48 _(ESTABLISHED, "ESTABLISHED") \ 49 _(CLOSE_WAIT, "CLOSE_WAIT") \ 50 _(FIN_WAIT_1, "FIN_WAIT_1") \ 51 _(LAST_ACK, "LAST_ACK") \ 52 _(CLOSING, "CLOSING") \ 53 _(FIN_WAIT_2, "FIN_WAIT_2") \ 54 _(TIME_WAIT, "TIME_WAIT") 56 typedef enum _tcp_state
58 #define _(sym, str) TCP_STATE_##sym, 70 #define foreach_tcp_timer \ 71 _(RETRANSMIT, "RETRANSMIT") \ 72 _(DELACK, "DELAYED ACK") \ 73 _(PERSIST, "PERSIST") \ 75 _(WAITCLOSE, "WAIT CLOSE") \ 76 _(RETRANSMIT_SYN, "RETRANSMIT SYN") \ 77 _(ESTABLISH, "ESTABLISH") \ 78 _(ESTABLISH_AO, "ESTABLISH_AO") \ 80 typedef enum _tcp_timers
82 #define _(sym, str) TCP_TIMER_##sym, 95 #define TCP_TIMER_HANDLE_INVALID ((u32) ~0) 98 #define TCP_TO_TIMER_TICK TCP_TICK*10 100 #define TCP_DELACK_TIME 1 101 #define TCP_ESTABLISH_TIME 750 102 #define TCP_SYN_RCVD_TIME 600 103 #define TCP_2MSL_TIME 300 104 #define TCP_CLOSEWAIT_TIME 20 105 #define TCP_TIMEWAIT_TIME 100 106 #define TCP_FINWAIT1_TIME 600 107 #define TCP_CLEANUP_TIME 1 108 #define TCP_TIMER_PERSIST_MIN 2 110 #define TCP_RTO_MAX 60 * THZ 111 #define TCP_RTO_MIN 0.2 * THZ 112 #define TCP_RTT_MAX 30 * THZ 113 #define TCP_RTO_SYN_RETRIES 3 114 #define TCP_RTO_INIT 1 * THZ 117 #define foreach_tcp_connection_flag \ 118 _(SNDACK, "Send ACK") \ 119 _(FINSNT, "FIN sent") \ 120 _(SENT_RCV_WND0, "Sent 0 rcv_wnd") \ 121 _(RECOVERY, "Recovery") \ 122 _(FAST_RECOVERY, "Fast Recovery") \ 123 _(DCNT_PENDING, "Disconnect pending") \ 124 _(HALF_OPEN_DONE, "Half-open completed") \ 125 _(FINPNDG, "FIN pending") \ 126 _(FRXT_PENDING, "Fast-retransmit pending") \ 127 _(FRXT_FIRST, "Fast-retransmit first again") \ 128 _(DEQ_PENDING, "Pending dequeue acked") \ 129 _(PSH_PENDING, "PSH pending") \ 131 typedef enum _tcp_connection_flag_bits
133 #define _(sym, str) TCP_CONN_##sym##_BIT, 139 typedef enum _tcp_connection_flag
141 #define _(sym, str) TCP_CONN_##sym = 1 << TCP_CONN_##sym##_BIT, 148 #define foreach_tcp_buf_flag \ 154 #define _(f) TCP_BUF_BIT_##f, 162 #define _(f) TCP_BUF_FLAG_##f = 1 << TCP_BUF_BIT_##f, 167 #define TCP_SCOREBOARD_TRACE (0) 168 #define TCP_MAX_SACK_BLOCKS 256 169 #define TCP_INVALID_SACK_HOLE_INDEX ((u32)~0) 171 typedef struct _scoreboard_trace_elt
180 typedef struct _sack_scoreboard_hole
189 typedef struct _sack_scoreboard
195 u32 last_sacked_bytes;
196 u32 last_bytes_delivered;
204 #if TCP_SCOREBOARD_TRACE 210 #if TCP_SCOREBOARD_TRACE 211 #define tcp_scoreboard_trace_add(_tc, _ack) \ 213 static u64 _group = 0; \ 214 sack_scoreboard_t *_sb = &_tc->sack_sb; \ 215 sack_block_t *_sack, *_sacks; \ 216 scoreboard_trace_elt_t *_elt; \ 219 _sacks = _tc->rcv_opts.sacks; \ 220 for (i = 0; i < vec_len (_sacks); i++) \ 222 _sack = &_sacks[i]; \ 223 vec_add2 (_sb->trace, _elt, 1); \ 224 _elt->start = _sack->start; \ 225 _elt->end = _sack->end; \ 226 _elt->ack = _elt->end == _ack ? _ack : 0; \ 227 _elt->snd_una_max = _elt->end == _ack ? _tc->snd_una_max : 0; \ 228 _elt->group = _group; \ 232 #define tcp_scoreboard_trace_add(_tc, _ack) 237 start,
u8 have_sent_1_smss,
253 typedef enum _tcp_cc_algorithm_type
261 typedef enum _tcp_cc_ack_t
268 typedef struct _tcp_connection
301 u32 tsval_recent_age;
336 u32 limited_transmit;
345 struct _tcp_cc_algorithm
357 #define tcp_fastrecovery_on(tc) (tc)->flags |= TCP_CONN_FAST_RECOVERY 358 #define tcp_fastrecovery_off(tc) (tc)->flags &= ~TCP_CONN_FAST_RECOVERY 359 #define tcp_recovery_on(tc) (tc)->flags |= TCP_CONN_RECOVERY 360 #define tcp_recovery_off(tc) (tc)->flags &= ~TCP_CONN_RECOVERY 361 #define tcp_in_fastrecovery(tc) ((tc)->flags & TCP_CONN_FAST_RECOVERY) 362 #define tcp_in_recovery(tc) ((tc)->flags & (TCP_CONN_RECOVERY)) 363 #define tcp_in_slowstart(tc) (tc->cwnd < tc->ssthresh) 364 #define tcp_disconnect_pending(tc) ((tc)->flags & TCP_CONN_DCNT_PENDING) 365 #define tcp_disconnect_pending_on(tc) ((tc)->flags |= TCP_CONN_DCNT_PENDING) 366 #define tcp_disconnect_pending_off(tc) ((tc)->flags &= ~TCP_CONN_DCNT_PENDING) 367 #define tcp_fastrecovery_first(tc) ((tc)->flags & TCP_CONN_FRXT_FIRST) 368 #define tcp_fastrecovery_first_on(tc) ((tc)->flags |= TCP_CONN_FRXT_FIRST) 369 #define tcp_fastrecovery_first_off(tc) ((tc)->flags &= ~TCP_CONN_FRXT_FIRST) 371 #define tcp_in_cong_recovery(tc) ((tc)->flags & \ 372 (TCP_CONN_FAST_RECOVERY | TCP_CONN_RECOVERY)) 377 tc->flags &= ~(TCP_CONN_FAST_RECOVERY | TCP_CONN_RECOVERY);
381 typedef enum _tcp_error
383 #define tcp_error(n,s) TCP_ERROR_##n, 389 typedef struct _tcp_lookup_dispatch
401 tw_timer_wheel_16t_2w_512sl_t timer_wheel;
413 u32 *pending_fast_rxt;
416 u32 *ongoing_fast_rxt;
419 u32 *postponed_fast_rxt;
422 u32 *pending_deq_acked;
428 u32 *pending_disconnects;
446 typedef struct _tcp_main
457 u8 log2_tstamp_clocks_per_tick;
458 f64 tstamp_ticks_per_clock;
471 u32 bytes_per_buffer;
488 u32 preallocated_connections;
489 u32 preallocated_half_open_connections;
493 u32 last_v4_address_rotor;
494 u32 last_v6_address_rotor;
504 f64 buffer_fail_fraction;
526 return &
tcp_main.wrk_ctx[thread_index];
537 #if (VLIB_BUFFER_TRACE_TRAJECTORY) 538 #define tcp_trajectory_add_start(b, start) \ 540 (*vlib_buffer_trace_trajectory_cb) (b, start); \ 543 #define tcp_trajectory_add_start(b, start) 562 if (
tcp_main.connections[thread_index] == 0)
619 u32 thread_index,
u8 is_ip4);
644 #define seq_lt(_s1, _s2) ((i32)((_s1)-(_s2)) < 0) 645 #define seq_leq(_s1, _s2) ((i32)((_s1)-(_s2)) <= 0) 646 #define seq_gt(_s1, _s2) ((i32)((_s1)-(_s2)) > 0) 647 #define seq_geq(_s1, _s2) ((i32)((_s1)-(_s2)) >= 0) 648 #define seq_max(_s1, _s2) (seq_gt((_s1), (_s2)) ? (_s1) : (_s2)) 651 #define timestamp_lt(_t1, _t2) ((i32)((_t1)-(_t2)) < 0) 652 #define timestamp_leq(_t1, _t2) ((i32)((_t1)-(_t2)) <= 0) 661 return tc->sack_sb.sacked_bytes + tc->sack_sb.lost_bytes;
663 return tc->rcv_dupacks * tc->snd_mss;
674 flight_size = (int) (tc->snd_una_max - tc->snd_una) -
tcp_bytes_out (tc)
681 (
"Negative: %u %u %u dupacks %u sacked bytes %u flags %d",
683 tc->snd_rxt_bytes, tc->rcv_dupacks, tc->sack_sb.sacked_bytes,
697 if (tc->snd_mss > 2190)
698 return 2 * tc->snd_mss;
699 else if (tc->snd_mss > 1095)
700 return 3 * tc->snd_mss;
702 return 4 * tc->snd_mss;
714 tc->cwnd_acc_bytes += bytes;
715 if (tc->cwnd_acc_bytes >= thresh)
717 u32 inc = tc->cwnd_acc_bytes / thresh;
718 tc->cwnd_acc_bytes -= inc * thresh;
719 tc->cwnd += inc * tc->snd_mss;
720 tc->cwnd =
clib_min (tc->cwnd, tc->tx_fifo_size);
733 return clib_min (tc->cwnd, tc->snd_wnd);
740 int flight_size = (int) (tc->snd_nxt - tc->snd_una);
742 if (available_wnd <= flight_size)
745 return available_wnd - flight_size;
757 if (available_wnd <= flight_size)
760 return available_wnd - flight_size;
766 if ((tc->flags & TCP_CONN_FINSNT) && tc->snd_una_max - tc->snd_una == 1)
798 return tcp_main.wrk_ctx[thread_index].time_now;
827 tc->cc_algo->rcv_ack (tc);
828 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
836 tc->timers[timer_id] =
837 tw_timer_start_16t_2w_512sl (&
tcp_main.
838 wrk_ctx[tc->c_thread_index].timer_wheel,
839 tc->c_c_index, timer_id, interval);
849 tw_timer_stop_16t_2w_512sl (&
tcp_main.
850 wrk_ctx[tc->c_thread_index].timer_wheel,
851 tc->timers[timer_id]);
860 tw_timer_update_16t_2w_512sl (&
tcp_main.
861 wrk_ctx[tc->c_thread_index].timer_wheel,
862 tc->timers[timer_id], interval);
864 tc->timers[timer_id] =
865 tw_timer_start_16t_2w_512sl (&
tcp_main.
866 wrk_ctx[tc->c_thread_index].timer_wheel,
867 tc->c_c_index, timer_id, interval);
873 ASSERT (tc->snd_una != tc->snd_una_max);
917 if (tc->snd_una == tc->snd_una_max)
920 if (tc->snd_wnd < tc->snd_mss)
934 #define tcp_validate_txf_size(_tc, _a) \ 935 ASSERT(_tc->state != TCP_STATE_ESTABLISHED \ 936 || session_tx_fifo_max_dequeue (&_tc->connection) >= _a) 949 return (
void *) tc->cc_data;
980 th->seq_number = seq;
981 th->ack_number = ack;
982 th->data_offset_and_reserved = (tcp_hdr_opts_len >> 2) << 4;
986 th->urgent_pointer = 0;
1009 clib_host_to_net_u32 (seq),
1010 clib_host_to_net_u32 (ack),
1011 tcp_hdr_opts_len,
flags,
1012 clib_host_to_net_u16 (wnd));
static vlib_cli_command_t trace
(constructor) VLIB_CLI_COMMAND (trace)
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
void scoreboard_clear(sack_scoreboard_t *sb)
static f64 tcp_time_now_us(u32 thread_index)
static void tcp_retransmit_timer_set(tcp_connection_t *tc)
void tcp_make_fin(tcp_connection_t *tc, vlib_buffer_t *b)
Convert buffer to FIN-ACK.
struct _sack_block sack_block_t
void tcp_cc_init_congestion(tcp_connection_t *tc)
Init loss recovery/fast recovery.
struct _scoreboard_trace_elt scoreboard_trace_elt_t
void tcp_connection_timers_reset(tcp_connection_t *tc)
Stop all connection timers.
static f64 transport_time_now(u32 thread_index)
struct _transport_connection transport_connection_t
#define TCP_TO_TIMER_TICK
vlib_node_registration_t tcp4_output_node
(constructor) VLIB_REGISTER_NODE (tcp4_output_node)
void scoreboard_init(sack_scoreboard_t *sb)
static u32 tcp_bytes_out(const tcp_connection_t *tc)
Our estimate of the number of bytes that have left the network.
static tcp_connection_t * tcp_connection_get_if_valid(u32 conn_index, u32 thread_index)
void tcp_connection_del(tcp_connection_t *tc)
Connection removal.
struct _sack_scoreboard sack_scoreboard_t
void tcp_update_sack_list(tcp_connection_t *tc, u32 start, u32 end)
Build SACK list as per RFC2018.
u32 tcp_snd_space(tcp_connection_t *tc)
static tcp_connection_t * tcp_half_open_connection_get(u32 conn_index)
sack_scoreboard_hole_t * scoreboard_last_hole(sack_scoreboard_t *sb)
sack_scoreboard_hole_t * scoreboard_next_hole(sack_scoreboard_t *sb, sack_scoreboard_hole_t *hole)
#define VLIB_BUFFER_PRE_DATA_SIZE
static_always_inline void clib_spinlock_unlock_if_init(clib_spinlock_t *p)
struct _tcp_main tcp_main_t
vlib_node_registration_t tcp6_output_node
(constructor) VLIB_REGISTER_NODE (tcp6_output_node)
static u64 clib_cpu_time_now(void)
timer_expiration_handler tcp_timer_retransmit_handler
u8 * format_tcp_scoreboard(u8 *s, va_list *args)
struct _tcp_lookup_dispatch tcp_lookup_dispatch_t
void tcp_connection_tx_pacer_update(tcp_connection_t *tc)
void tcp_update_burst_snd_vars(tcp_connection_t *tc)
Update burst send vars.
struct _tcp_connection tcp_connection_t
static u32 tcp_available_cc_snd_space(const tcp_connection_t *tc)
Estimate of how many bytes we can still push into the network.
static u32 tcp_available_snd_wnd(const tcp_connection_t *tc)
static tcp_connection_t * tcp_get_connection_from_transport(transport_connection_t *tconn)
void tcp_connection_cleanup(tcp_connection_t *tc)
Cleans up connection state.
static void tcp_cc_rcv_ack(tcp_connection_t *tc)
format_function_t format_tcp_flags
struct _tcp_header tcp_header_t
void tcp_connection_reset(tcp_connection_t *tc)
Notify session that connection has been reset.
struct _sack_scoreboard_hole sack_scoreboard_hole_t
u8 * tcp_scoreboard_replay(u8 *s, tcp_connection_t *tc, u8 verbose)
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
static void tcp_connection_set_state(tcp_connection_t *tc, tcp_state_t state)
sack_scoreboard_hole_t * scoreboard_get_hole(sack_scoreboard_t *sb, u32 index)
static u32 tcp_available_output_snd_space(const tcp_connection_t *tc)
int tcp_retransmit_first_unacked(tcp_worker_ctx_t *wrk, tcp_connection_t *tc)
Retransmit first unacked segment.
static tcp_header_t * tcp_buffer_hdr(vlib_buffer_t *b)
static timer_callback_t * timers
enum _tcp_state tcp_state_t
vhost_vring_state_t state
timer_expiration_handler tcp_timer_retransmit_syn_handler
static u32 tcp_time_now(void)
sack_scoreboard_hole_t * scoreboard_next_rxt_hole(sack_scoreboard_t *sb, sack_scoreboard_hole_t *start, u8 have_sent_1_smss, u8 *can_rescue, u8 *snd_limited)
Figure out the next hole to retransmit.
void tcp_api_reference(void)
#define TCP_EVT_DBG(_evt, _args...)
static void tcp_timer_set(tcp_connection_t *tc, u8 timer_id, u32 interval)
void tcp_do_fastretransmits(tcp_worker_ctx_t *wrk)
static heap_elt_t * first(heap_header_t *h)
struct tcp_worker_ctx_ tcp_worker_ctx_t
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
timer_expiration_handler tcp_timer_persist_handler
u32 tcp_push_header(tcp_connection_t *tconn, vlib_buffer_t *b)
u32 tcp_sack_list_bytes(tcp_connection_t *tc)
static void * vlib_buffer_push_tcp_net_order(vlib_buffer_t *b, u16 sp, u16 dp, u32 seq, u32 ack, u8 tcp_hdr_opts_len, u8 flags, u16 wnd)
Push TCP header to buffer.
void tcp_rcv_sacks(tcp_connection_t *tc, u32 ack)
int tcp_fast_retransmit_sack(tcp_worker_ctx_t *wrk, tcp_connection_t *tc, u32 burst_size)
Do fast retransmit with SACKs.
clib_error_t * vnet_tcp_enable_disable(vlib_main_t *vm, u8 is_en)
void tcp_send_syn(tcp_connection_t *tc)
Send SYN.
static void * tcp_cc_data(tcp_connection_t *tc)
sack_scoreboard_hole_t * scoreboard_prev_hole(sack_scoreboard_t *sb, sack_scoreboard_hole_t *hole)
#define TCP_TIMER_HANDLE_INVALID
static u32 tcp_flight_size(const tcp_connection_t *tc)
Our estimate of the number of bytes in flight (pipe size)
tcp_connection_t * tcp_connection_alloc(u8 thread_index)
void tcp_connection_tx_pacer_reset(tcp_connection_t *tc, u32 window, u32 start_bucket)
void tcp_cc_algo_register(tcp_cc_algorithm_type_e type, const tcp_cc_algorithm_t *vft)
enum _tcp_cc_ack_t tcp_cc_ack_t
static void tcp_cwnd_accumulate(tcp_connection_t *tc, u32 thresh, u32 bytes)
static void tcp_timer_reset(tcp_connection_t *tc, u8 timer_id)
enum _tcp_error tcp_error_t
static void * vlib_buffer_push_tcp(vlib_buffer_t *b, u16 sp_net, u16 dp_net, u32 seq, u32 ack, u8 tcp_hdr_opts_len, u8 flags, u16 wnd)
Push TCP header to buffer.
int tcp_configure_v4_source_address_range(vlib_main_t *vm, ip4_address_t *start, ip4_address_t *end, u32 table_id)
Configure an ipv4 source address range.
static_always_inline uword vlib_get_thread_index(void)
void tcp_send_reset(tcp_connection_t *tc)
Build and set reset packet for connection.
void tcp_punt_unknown(vlib_main_t *vm, u8 is_ip4, u8 is_add)
format_function_t format_tcp_state
void tcp_program_ack(tcp_worker_ctx_t *wrk, tcp_connection_t *tc)
#define clib_warning(format, args...)
enum _tcp_timers tcp_timers_e
int tcp_half_open_connection_cleanup(tcp_connection_t *tc)
Try to cleanup half-open connection.
u32 fib_node_index_t
A typedef of a node index.
void tcp_connection_timers_init(tcp_connection_t *tc)
Initialize all connection timers as invalid.
void tcp_make_synack(tcp_connection_t *ts, vlib_buffer_t *b)
Convert buffer to SYN-ACK.
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
format_function_t format_tcp_rcv_sacks
vlib_node_registration_t tcp6_input_node
(constructor) VLIB_REGISTER_NODE (tcp6_input_node)
fib_node_index_t tcp_lookup_rmt_in_fib(tcp_connection_t *tc)
void tcp_make_ack(tcp_connection_t *ts, vlib_buffer_t *b)
Convert buffer to ACK.
void tcp_program_fastretransmit(tcp_worker_ctx_t *wrk, tcp_connection_t *tc)
void tcp_send_synack(tcp_connection_t *tc)
static void tcp_timer_update(tcp_connection_t *tc, u8 timer_id, u32 interval)
enum _tcp_cc_algorithm_type tcp_cc_algorithm_type_e
void tcp_flush_frames_to_output(tcp_worker_ctx_t *wrk)
Flush v4 and v6 tcp and ip-lookup tx frames for thread index.
enum _tcp_connection_flag_bits tcp_connection_flag_bits_e
void tcp_connection_init_vars(tcp_connection_t *tc)
Initialize tcp connection variables.
u8 * format_tcp_connection(u8 *s, va_list *args)
static u32 tcp_end_seq(tcp_header_t *th, u32 len)
#define tcp_fastrecovery_first_off(tc)
void tcp_flush_frame_to_output(tcp_worker_ctx_t *wrk, u8 is_ip4)
Flush tx frame populated by retransmits and timer pops.
struct _tcp_cc_algorithm tcp_cc_algorithm_t
static u32 tcp_time_now_w_thread(u32 thread_index)
struct _vlib_node_registration vlib_node_registration_t
struct tcp_iss_seed_ tcp_iss_seed_t
static void tcp_persist_timer_update(tcp_connection_t *tc)
void tcp_send_reset_w_pkt(tcp_connection_t *tc, vlib_buffer_t *pkt, u32 thread_index, u8 is_ip4)
Send reset without reusing existing buffer.
static void * vlib_buffer_push_uninit(vlib_buffer_t *b, u8 size)
Prepend uninitialized data to buffer.
vlib_node_registration_t tcp4_input_node
(constructor) VLIB_REGISTER_NODE (tcp4_input_node)
tcp_cc_algorithm_t * tcp_cc_algo_get(tcp_cc_algorithm_type_e type)
static u32 tcp_initial_cwnd(const tcp_connection_t *tc)
Initial cwnd as per RFC5681.
#define foreach_tcp_fsm_state
TCP FSM state definitions as per RFC793.
void tcp_send_fin(tcp_connection_t *tc)
Send FIN.
#define foreach_tcp_connection_flag
TCP connection flags.
#define foreach_tcp_timer
TCP timers.
void() timer_expiration_handler(u32 index)
static u8 tcp_is_lost_fin(tcp_connection_t *tc)
sack_scoreboard_hole_t * scoreboard_first_hole(sack_scoreboard_t *sb)
static tcp_worker_ctx_t * tcp_get_worker(u32 thread_index)
static void tcp_retransmit_timer_update(tcp_connection_t *tc)
int tcp_fast_retransmit_no_sack(tcp_worker_ctx_t *wrk, tcp_connection_t *tc, u32 burst_size)
Fast retransmit without SACK info.
int tcp_fast_retransmit(tcp_worker_ctx_t *wrk, tcp_connection_t *tc, u32 burst_size)
Do fast retransmit.
void tcp_init_snd_vars(tcp_connection_t *tc)
Initialize connection send variables.
void tcp_connection_close(tcp_connection_t *tc)
Begin connection closing procedure.
static void tcp_retransmit_timer_force_update(tcp_connection_t *tc)
static tcp_connection_t * tcp_connection_get(u32 conn_index, u32 thread_index)
void tcp_update_rto(tcp_connection_t *tc)
void tcp_init_mss(tcp_connection_t *tc)
#define foreach_tcp_buf_flag
TCP buffer flags.
enum _tcp_connection_flag tcp_connection_flags_e
format_function_t format_tcp_sacks
#define TCP_TIMER_PERSIST_MIN
#define tcp_opts_sack_permitted(_to)
void tcp_send_acks(tcp_worker_ctx_t *wrk)
void newreno_rcv_cong_ack(tcp_connection_t *tc, tcp_cc_ack_t ack_type)
static u32 tcp_loss_wnd(const tcp_connection_t *tc)
int tcp_configure_v6_source_address_range(vlib_main_t *vm, ip6_address_t *start, ip6_address_t *end, u32 table_id)
Configure an ipv6 source address range.
static void tcp_persist_timer_set(tcp_connection_t *tc)
static tcp_main_t * vnet_get_tcp_main()
static void tcp_cong_recovery_off(tcp_connection_t *tc)
timer_expiration_handler tcp_timer_delack_handler
void tcp_connection_free(tcp_connection_t *tc)
static_always_inline void clib_spinlock_lock_if_init(clib_spinlock_t *p)
static void tcp_retransmit_timer_reset(tcp_connection_t *tc)
void tcp_program_dupack(tcp_worker_ctx_t *wrk, tcp_connection_t *tc)
void tcp_cc_fastrecovery_exit(tcp_connection_t *tc)
static u32 tcp_set_time_now(tcp_worker_ctx_t *wrk)
static u8 tcp_timer_is_active(tcp_connection_t *tc, tcp_timers_e timer)
static tcp_connection_t * tcp_listener_get(u32 tli)
static void tcp_persist_timer_reset(tcp_connection_t *tc)