Home
last modified time | relevance | path

Searched refs:TCPHDR_CWR (Results 1 – 6 of 6) sorted by relevance

/linux-6.15/tools/testing/selftests/bpf/
H A Dtest_tcp_hdr_options.h48 #define TCPHDR_CWR 0x80 macro
/linux-6.15/drivers/net/ethernet/meta/fbnic/
H A Dfbnic_mac.c330 TCPHDR_CWR | in fbnic_mac_init_txb()
332 FIELD_PREP(FBNIC_TCE_LSO_CTRL_TCPF_CLR_END, TCPHDR_CWR)); in fbnic_mac_init_txb()
/linux-6.15/include/net/
H A Dtcp.h982 #define TCPHDR_CWR BIT(7) macro
986 TCPHDR_ECE | TCPHDR_CWR | TCPHDR_AE)
990 #define TCPHDR_ACE (TCPHDR_ECE | TCPHDR_CWR | TCPHDR_AE)
991 #define TCPHDR_SYN_ECN (TCPHDR_SYN | TCPHDR_ECE | TCPHDR_CWR)
/linux-6.15/net/ipv4/
H A Dtcp_output.c327 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_CWR; in tcp_ecn_send_synack()
353 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_ECE | TCPHDR_CWR; in tcp_ecn_send_syn()
366 TCP_SKB_CB(skb)->tcp_flags &= ~(TCPHDR_ECE | TCPHDR_CWR); in tcp_ecn_clear_syn()
H A Dtcp_ipv4.c2068 (TCPHDR_ECE | TCPHDR_CWR | TCPHDR_AE)) ||
/linux-6.15/net/netfilter/
H A Dnf_conntrack_proto_tcp.c829 tcpflags = (tcp_flag_byte(th) & ~(TCPHDR_ECE|TCPHDR_CWR|TCPHDR_PSH)); in tcp_error()