Home
last modified time | relevance | path

Searched refs:td_maxwin (Results 1 – 4 of 4) sorted by relevance

/linux/net/netfilter/
H A Dnf_conntrack_proto_tcp.c327 ((sender)->td_maxwin > MAXACKWINCONST ? (sender)->td_maxwin \
468 sender->td_maxwin = (win == 0 ? 1 : win); in tcp_init_sender()
584 if (sender->td_maxwin == 0) { in tcp_in_window()
603 sender->td_maxwin = (swin == 0 ? 1 : swin); in tcp_in_window()
604 sender->td_maxend = end + sender->td_maxwin; in tcp_in_window()
605 if (receiver->td_maxwin == 0) { in tcp_in_window()
667 in_recv_win = receiver->td_maxwin && in tcp_in_window()
668 after(end, sender->td_end - receiver->td_maxwin - 1); in tcp_in_window()
672 overshot <= receiver->td_maxwin && in tcp_in_window()
700 in_recv_win = !receiver->td_maxwin || in tcp_in_window()
[all …]
H A Dnf_conntrack_proto.c434 ct->proto.tcp.seen[0].td_maxwin = 0; in nf_ct_tcp_fixup()
435 ct->proto.tcp.seen[1].td_maxwin = 0; in nf_ct_tcp_fixup()
H A Dnf_flow_table_core.c194 tcp->seen[0].td_maxwin = 0; in flow_offload_fixup_tcp()
196 tcp->seen[1].td_maxwin = 0; in flow_offload_fixup_tcp()
/linux/include/linux/netfilter/
H A Dnf_conntrack_tcp.h11 u_int32_t td_maxwin; /* max(win) */ member