Changeset View
Changeset View
Standalone View
Standalone View
sys/netinet/tcp_subr.c
Show First 20 Lines • Show All 2,268 Lines • ▼ Show 20 Lines | |||||
#ifdef INET6 | #ifdef INET6 | ||||
isipv6 ? V_tcp_v6mssdflt : | isipv6 ? V_tcp_v6mssdflt : | ||||
#endif /* INET6 */ | #endif /* INET6 */ | ||||
V_tcp_mssdflt; | V_tcp_mssdflt; | ||||
/* All mbuf queue/ack compress flags should be off */ | /* All mbuf queue/ack compress flags should be off */ | ||||
tcp_lro_features_off(tp); | tcp_lro_features_off(tp); | ||||
tp->t_hpts_cpu = HPTS_CPU_NONE; | |||||
tp->t_lro_cpu = HPTS_CPU_NONE; | |||||
callout_init_rw(&tp->t_callout, &inp->inp_lock, CALLOUT_RETURNUNLOCKED); | callout_init_rw(&tp->t_callout, &inp->inp_lock, CALLOUT_RETURNUNLOCKED); | ||||
for (int i = 0; i < TT_N; i++) | for (int i = 0; i < TT_N; i++) | ||||
tp->t_timers[i] = SBT_MAX; | tp->t_timers[i] = SBT_MAX; | ||||
switch (V_tcp_do_rfc1323) { | switch (V_tcp_do_rfc1323) { | ||||
case 0: | case 0: | ||||
break; | break; | ||||
default: | default: | ||||
▲ Show 20 Lines • Show All 2,415 Lines • Show Last 20 Lines |