Home
last modified time | relevance | path

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

/dpdk/lib/pcapng/
H A Drte_pcapng.c416 struct pcapng_enhance_packet_block *epb; in rte_pcapng_copy() local
491 epb = (struct pcapng_enhance_packet_block *) in rte_pcapng_copy()
492 rte_pktmbuf_prepend(mc, sizeof(*epb)); in rte_pcapng_copy()
493 if (unlikely(epb == NULL)) in rte_pcapng_copy()
497 epb->block_length = rte_pktmbuf_data_len(mc); in rte_pcapng_copy()
502 epb->timestamp_hi = ns >> 32; in rte_pcapng_copy()
503 epb->timestamp_lo = (uint32_t)ns; in rte_pcapng_copy()
504 epb->capture_length = data_len; in rte_pcapng_copy()
505 epb->original_length = orig_len; in rte_pcapng_copy()
508 *(uint32_t *)opt = epb->block_length; in rte_pcapng_copy()
[all …]