Lines Matching defs:dnh
380 const struct debugnet_msg_hdr *dnh;
388 if (m->m_pkthdr.len < sizeof(*dnh)) {
394 if (m->m_len < sizeof(*dnh)) {
395 m = m_pullup(m, sizeof(*dnh));
403 dnh = mtod(m, const struct debugnet_msg_hdr *);
404 if (ntohl(dnh->mh_len) + sizeof(*dnh) > m->m_pkthdr.len) {
409 hdr_type = ntohl(dnh->mh_type);
428 seqno = dnh->mh_seqno; /* net endian */
429 m_adj(m, sizeof(*dnh));
430 dnh = NULL;