Searched refs:TH_CWR (Results 1 – 20 of 20) sorted by relevance
/freebsd/sys/netinet/ |
H A D | tcp_ecn.c | 129 if ((thflags & (TH_CWR | TH_ECE)) == (0 | TH_ECE)) { in tcp_ecn_input_syn_sent() 148 switch (thflags & (TH_AE | TH_CWR | TH_ECE)) { in tcp_ecn_input_syn_sent() 156 case (0|TH_CWR|0): in tcp_ecn_input_syn_sent() 172 case (0|TH_CWR|TH_ECE): in tcp_ecn_input_syn_sent() 180 case (TH_AE|TH_CWR|0): in tcp_ecn_input_syn_sent() 237 if ((thflags & (TH_CWR | TH_ECE)) == (TH_CWR | TH_ECE)) { in tcp_ecn_input_parallel_syn() 248 switch (thflags & (TH_AE | TH_CWR | TH_ECE)) { in tcp_ecn_input_parallel_syn() 253 case (0|TH_CWR|TH_ECE): in tcp_ecn_input_parallel_syn() 259 case (TH_AE|TH_CWR|TH_ECE): in tcp_ecn_input_parallel_syn() 355 if (thflags & TH_CWR) { in tcp_ecn_input_segment() [all …]
|
H A D | tcp.h | 69 #define TH_CWR 0x80 macro 74 #define TH_FLAGS (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|TH_ECE|TH_CWR|TH_AE)
|
H A D | tcp_lro_hpts.c | 132 if ((tcp_get_flags(th) & ~(TH_ACK | TH_PUSH | TH_ECE | TH_CWR)) != 0) in tcp_lro_ack_valid()
|
H A D | tcp_input.c | 539 if (flags & TH_CWR) in cc_ecnpkt_handler_flags()
|
/freebsd/sbin/ipf/libipf/ |
H A D | flags.c | 18 #ifndef TH_CWR 19 # define TH_CWR 0x80 macro 27 TH_ECN, TH_CWR, TH_AE };
|
H A D | tcpflags.c | 19 #ifndef TH_CWR 20 # define TH_CWR 0x80 macro 37 tcpf |= TH_CWR; in tcpflags()
|
H A D | tcp_flags.c | 40 tcpfm = TH_FLAGS & ~(TH_ECN|TH_CWR); in tcp_flags()
|
H A D | printpacket.c | 102 if (tcpflags & TH_CWR) in printpacket()
|
H A D | ipft_tx.c | 25 TH_ACK, TH_URG, TH_ECN, TH_CWR, TH_AE };
|
/freebsd/contrib/tcpdump/ |
H A D | tcp.h | 62 #define TH_CWR 0x80 /* ECN Cwnd Reduced */ macro
|
H A D | print-tcp.c | 112 { TH_CWR, "W" },
|
/freebsd/cddl/lib/libdtrace/ |
H A D | tcp.d | 97 #pragma D binding "1.6.3" TH_CWR 98 inline uint16_t TH_CWR = 0x80; variable 334 flags & TH_CWR ? "CWR" :
|
/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | ip_compat.h | 1125 #ifndef TH_CWR 1126 # define TH_CWR 0x80 macro 1131 #define TH_ECNALL (TH_ECN|TH_CWR|TH_AE)
|
H A D | ip_state.c | 4025 if ((tcpflags & ~(TH_ECN|TH_CWR)) == TH_SYN) { in ipf_tcp_age() 4075 } else if ((tcpflags & ~(TH_ECN|TH_CWR)) == in ipf_tcp_age()
|
/freebsd/sys/dev/virtio/network/ |
H A D | virtio_net.h | 484 if (tcp_get_flags(tcp) & TH_CWR) { in virtio_net_tx_offload_tso()
|
H A D | if_vtnet.c | 2441 if (__predict_false(tcp_get_flags(tcp) & TH_CWR)) { in vtnet_txq_offload_tso()
|
/freebsd/sbin/ipf/ipsend/ |
H A D | ipsend.c | 389 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | TH_CWR); in main()
|
/freebsd/sbin/ipf/iplang/ |
H A D | iplang_y.y | 1050 TH_FIN, TH_ECE, TH_CWR, TH_AE } ; in set_tcpflags()
|
/freebsd/sbin/ipf/ipmon/ |
H A D | ipmon.c | 80 { TH_CWR, 'W' },
|
/freebsd/sys/netpfil/pf/ |
H A D | pf.c | 3089 if (f & TH_CWR) in pf_print_flags()
|