OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:dccp_hdr_ext
(Results
51 - 51
of
51
) sorted by null
1
2
3
/external/kernel-headers/original/linux/
dccp.h
50
* struct
dccp_hdr_ext
- the low bits of a 48 bit seq packet
54
struct
dccp_hdr_ext
{
struct
253
static inline struct
dccp_hdr_ext
*dccp_hdrx(const struct sk_buff *skb)
255
return (struct
dccp_hdr_ext
*)(skb->h.raw + sizeof(struct dccp_hdr));
260
return sizeof(*dh) + (dh->dccph_x ? sizeof(struct
dccp_hdr_ext
) : 0);
Completed in 24 milliseconds
1
2
3