DPDK 22.11.4
rte_pcapng.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2019 Microsoft Corporation
3 */
4
23#ifndef _RTE_PCAPNG_H_
24#define _RTE_PCAPNG_H_
25
26#include <stdint.h>
27#include <sys/types.h>
28#include <rte_compat.h>
29#include <rte_mempool.h>
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
35/* Opaque handle used for functions in this library. */
36typedef struct rte_pcapng rte_pcapng_t;
37
57__rte_experimental
58rte_pcapng_t *
60 const char *osname, const char *hardware,
61 const char *appname, const char *comment);
62
69__rte_experimental
70void
71rte_pcapng_close(rte_pcapng_t *self);
72
78 RTE_PCAPNG_DIRECTION_UNKNOWN = 0,
79 RTE_PCAPNG_DIRECTION_IN = 1,
80 RTE_PCAPNG_DIRECTION_OUT = 2,
81};
82
109__rte_experimental
110struct rte_mbuf *
111rte_pcapng_copy(uint16_t port_id, uint32_t queue,
112 const struct rte_mbuf *m, struct rte_mempool *mp,
113 uint32_t length, uint64_t timestamp,
114 enum rte_pcapng_direction direction);
115
116
126__rte_experimental
127uint32_t
128rte_pcapng_mbuf_size(uint32_t length);
129
151__rte_experimental
152ssize_t
153rte_pcapng_write_packets(rte_pcapng_t *self,
154 struct rte_mbuf *pkts[], uint16_t nb_pkts);
155
182__rte_experimental
183ssize_t
184rte_pcapng_write_stats(rte_pcapng_t *self, uint16_t port,
185 const char *comment,
186 uint64_t start_time, uint64_t end_time,
187 uint64_t ifrecv, uint64_t ifdrop);
188
189#ifdef __cplusplus
190}
191#endif
192
193#endif /* _RTE_PCAPNG_H_ */
__rte_experimental rte_pcapng_t * rte_pcapng_fdopen(int fd, const char *osname, const char *hardware, const char *appname, const char *comment)
rte_pcapng_direction
Definition: rte_pcapng.h:77
__rte_experimental ssize_t rte_pcapng_write_packets(rte_pcapng_t *self, struct rte_mbuf *pkts[], uint16_t nb_pkts)
__rte_experimental ssize_t rte_pcapng_write_stats(rte_pcapng_t *self, uint16_t port, const char *comment, uint64_t start_time, uint64_t end_time, uint64_t ifrecv, uint64_t ifdrop)
__rte_experimental struct rte_mbuf * rte_pcapng_copy(uint16_t port_id, uint32_t queue, const struct rte_mbuf *m, struct rte_mempool *mp, uint32_t length, uint64_t timestamp, enum rte_pcapng_direction direction)
__rte_experimental uint32_t rte_pcapng_mbuf_size(uint32_t length)
__rte_experimental void rte_pcapng_close(rte_pcapng_t *self)
uint16_t port