Home
last modified time | relevance | path

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

/external/tcpdump/
Ddccp.h51 struct dccp_hdr_ext { struct
92 const int ext = DCCPH_X(hdrg) ? sizeof(struct dccp_hdr_ext) : 0;
Dprint-dccp.c149 const struct dccp_hdr_ext *dhx = (void *)(dh + 1); in dccp_seqno()
160 return sizeof(*dh) + (DCCPH_X(dh) ? sizeof(struct dccp_hdr_ext) : 0); in dccp_basic_hdr_len()
/external/kernel-headers/original/linux/
Ddccp.h54 struct dccp_hdr_ext { struct
253 static inline struct dccp_hdr_ext *dccp_hdrx(const struct sk_buff *skb) in dccp_hdrx()
255 return (struct dccp_hdr_ext *)(skb->h.raw + sizeof(struct dccp_hdr)); in dccp_hdrx()
260 return sizeof(*dh) + (dh->dccph_x ? sizeof(struct dccp_hdr_ext) : 0); in __dccp_basic_hdr_len()