Home
last modified time | relevance | path

Searched refs:dhack (Results 1 – 3 of 3) sorted by relevance

/linux-6.6.21/include/linux/
Ddccp.h120 const struct dccp_hdr_ack_bits *dhack = dccp_hdr_ack_bits(skb); in dccp_hdr_ack_seq() local
121 return ((u64)ntohs(dhack->dccph_ack_nr_high) << 32) + ntohl(dhack->dccph_ack_nr_low); in dccp_hdr_ack_seq()
/linux-6.6.21/net/dccp/
Ddccp.h394 static inline void dccp_hdr_set_ack(struct dccp_hdr_ack_bits *dhack, in dccp_hdr_set_ack() argument
397 dhack->dccph_reserved1 = 0; in dccp_hdr_set_ack()
398 dhack->dccph_ack_nr_high = htons(gsr >> 32); in dccp_hdr_set_ack()
399 dhack->dccph_ack_nr_low = htonl(gsr & 0xffffffff); in dccp_hdr_set_ack()
/linux-6.6.21/net/netfilter/
Dnf_conntrack_proto_dccp.c426 const struct dccp_hdr_ack_bits *dhack; in dccp_ack_seq() local
428 dhack = (void *)dh + __dccp_basic_hdr_len(dh); in dccp_ack_seq()
429 return ((u64)ntohs(dhack->dccph_ack_nr_high) << 32) + in dccp_ack_seq()
430 ntohl(dhack->dccph_ack_nr_low); in dccp_ack_seq()