pkt_hdr
if ((pkt_hdr & AXEN_RXHDR_CRC_ERR) ||
(pkt_hdr & AXEN_RXHDR_DROP_ERR)) {
if ((pkt_hdr & AXEN_RXHDR_L3CSUM_ERR) ||
(pkt_hdr & AXEN_RXHDR_L4CSUM_ERR)) {
l4_type = (pkt_hdr & AXEN_RXHDR_L4_TYPE_MASK) >>
u_int32_t rx_hdr, pkt_hdr;
if (total_len < sizeof(pkt_hdr)) {
pkt_hdr = letoh32(*hdr_p);
pkt_len = (pkt_hdr >> 16) & 0x1fff;
pkt_count, pkt_hdr, pkt_len));
const struct pkt_hdr *ph;
ph = (const struct pkt_hdr *)hdr;