Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:dccp_hdr

31  * struct dccp_hdr - generic part of DCCP packet header, with a 24-bit
44 struct dccp_hdr {
190 static inline u_int dccp_csum_coverage(const struct dccp_hdr* dh, u_int len)
201 const struct dccp_hdr *dh, u_int len)
208 const struct dccp_hdr *dh, u_int len)
223 const struct dccp_hdr *dh = (const struct dccp_hdr *)bp;
236 static inline unsigned int dccp_basic_hdr_len(const struct dccp_hdr *dh)
238 return DCCPH_X(dh) ? sizeof(struct dccp_hdr_ext) : sizeof(struct dccp_hdr);
243 const struct dccp_hdr *dh = (const struct dccp_hdr *)bp;
271 const struct dccp_hdr *dh;
280 dh = (const struct dccp_hdr *)bp;
294 if (len < sizeof(struct dccp_hdr)) {
296 len - (u_int)sizeof(struct dccp_hdr)));