Searched refs:TCPHDR_ACK (Results 1 – 7 of 7) sorted by relevance
/linux-6.1.9/tools/testing/selftests/bpf/ |
D | test_tcp_hdr_options.h | 45 #define TCPHDR_ACK 0x10 macro 49 #define TCPHDR_SYNACK (TCPHDR_SYN | TCPHDR_ACK)
|
/linux-6.1.9/net/netfilter/ |
D | nf_conntrack_proto_tcp.c | 778 static const u8 tcp_valid_flags[(TCPHDR_FIN|TCPHDR_SYN|TCPHDR_RST|TCPHDR_ACK| 783 [TCPHDR_SYN|TCPHDR_ACK] = 1, 785 [TCPHDR_RST|TCPHDR_ACK] = 1, 786 [TCPHDR_FIN|TCPHDR_ACK] = 1, 787 [TCPHDR_FIN|TCPHDR_ACK|TCPHDR_URG] = 1, 788 [TCPHDR_ACK] = 1, 789 [TCPHDR_ACK|TCPHDR_URG] = 1,
|
/linux-6.1.9/net/ipv4/ |
D | tcp_output.c | 1375 if (likely(tcb->tcp_flags & TCPHDR_ACK)) in __tcp_transmit_skb() 2413 TCP_SKB_CB(nskb)->tcp_flags = TCPHDR_ACK; in tcp_mtu_probe() 3432 TCPHDR_ACK | TCPHDR_FIN); in tcp_send_fin() 3459 TCPHDR_ACK | TCPHDR_RST); in tcp_send_active_reset() 3486 if (!(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_ACK)) { in tcp_send_synack() 3505 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_ACK; in tcp_send_synack() 3586 TCP_SKB_CB(skb)->tcp_flags = TCPHDR_SYN | TCPHDR_ACK; in tcp_make_synack() 3812 TCP_SKB_CB(syn_data)->tcp_flags = TCPHDR_ACK | TCPHDR_PSH; in tcp_send_syn_data() 3977 tcp_init_nondata_skb(buff, tcp_acceptable_seq(sk), TCPHDR_ACK); in __tcp_send_ack() 4023 tcp_init_nondata_skb(skb, tp->snd_una - !urgent, TCPHDR_ACK); in tcp_xmit_probe_skb()
|
D | tcp_ipv4.c | 1808 TCP_SKB_CB(skb)->tcp_flags) & TCPHDR_ACK) || in tcp_add_backlog()
|
D | tcp.c | 662 tcb->tcp_flags = TCPHDR_ACK; in tcp_skb_entail()
|
/linux-6.1.9/net/mptcp/ |
D | options.c | 42 if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_ACK) in mptcp_parse_option()
|
/linux-6.1.9/include/net/ |
D | tcp.h | 844 #define TCPHDR_ACK 0x10 macro
|