Home
last modified time | relevance | path

Searched refs:TH_CWR (Results 1 – 9 of 9) sorted by relevance

/xnu-11215/bsd/netinet/
H A Dtcp.h114 #define TH_CWR 0x80 macro
116 #define TH_FLAGS (TH_FIN|TH_SYN|TH_RST|TH_ACK|TH_URG|TH_ECE|TH_CWR)
119 #define TH_ACE (TH_AE|TH_CWR|TH_ECE)
H A Dtcp_output.c2053 flags |= TH_CWR; in tcp_output()
2055 flags &= ~TH_CWR; in tcp_output()
2113 tp->t_prev_ace_flags = TH_CWR; in tcp_output()
2119 tp->t_prev_ace_flags = (TH_CWR | TH_ECE); in tcp_output()
2129 tp->t_prev_ace_flags = (TH_AE | TH_CWR); in tcp_output()
2217 flags |= (TH_ECE | TH_CWR); in tcp_output()
2247 flags &= ~(TH_AE | TH_CWR | TH_ECE); in tcp_output()
2249 flags |= TH_CWR; in tcp_output()
2252 flags |= (TH_CWR | TH_ECE); in tcp_output()
2258 flags |= (TH_AE | TH_CWR); in tcp_output()
[all …]
H A Dtcp_input.c1823 case (0 | TH_CWR | TH_ECE): in tcp_input_process_accecn_syn()
2960 if (thflags & TH_CWR) { in tcp_input()
3016 (ip_ecn == IPTOS_ECN_CE || (thflags & TH_CWR))) { in tcp_input()
3726 if ((thflags & (TH_ECE | TH_CWR)) == (TH_ECE)) { in tcp_input()
3766 case (0 | TH_CWR | 0): in tcp_input()
3772 case (0 | TH_CWR | TH_ECE): in tcp_input()
3788 case (TH_AE | TH_CWR | 0): in tcp_input()
4667 case (0 | TH_CWR | 0): in tcp_input()
4674 case (0 | TH_CWR | TH_ECE): in tcp_input()
4684 case (TH_AE | TH_CWR | 0): in tcp_input()
H A Dtcp_subr.c5249 if (th->th_flags & TH_CWR) { in tcp_get_ace()
/xnu-11215/bsd/dev/dtrace/scripts/
H A Dtcp.d45 inline int TH_CWR = 0x80; variable
46 #pragma D binding "1.0" TH_CWR
/xnu-11215/bsd/skywalk/nexus/netif/
H A Dnx_netif_gso.c393 state->tcp->th_flags &= ~TH_CWR; in netif_gso_tcp_segment_mbuf()
/xnu-11215/bsd/skywalk/nexus/flowswitch/
H A Dfsw_dp.c3788 tcp->th_flags &= ~TH_CWR; in do_gso()
3813 tcp->th_flags &= ~TH_CWR; in do_gso()
/xnu-11215/bsd/net/
H A Dif_bridge.c11036 state->tcp->th_flags &= ~TH_CWR;
H A Dpf.c2049 if (f & TH_CWR) { in pf_print_flags()