diff options
author | Toni <matzeton@googlemail.com> | 2024-08-19 18:33:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-19 18:33:18 +0200 |
commit | 5e4005162b804c5501fccf4d066c5b1b99c38b89 (patch) | |
tree | 73a090e6c0fd79de4a2d5fc950be8d52185bf905 /npfring.h | |
parent | a230eaf061e4c570acfa3e2d494baa6c604acc22 (diff) |
Add PF_RING support. (#38)
Diffstat (limited to 'npfring.h')
-rw-r--r-- | npfring.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/npfring.h b/npfring.h new file mode 100644 index 000000000..4536b892e --- /dev/null +++ b/npfring.h @@ -0,0 +1,41 @@ +#ifndef PFRING_H +#define PFRING_H 1 + +#include <pcap/pcap.h> +#include <stdint.h> +#include <stdio.h> + +#include "config.h" + +struct npfring +{ + void * pfring_desc; + uint8_t pfring_buffer[PFRING_BUFFER_SIZE]; +}; + +struct npfring_stats +{ + uint64_t recv; + uint64_t drop; + uint64_t shunt; +}; + +void npfring_print_version(FILE * const out); + +int npfring_init(char const * device_name, uint32_t caplen, struct npfring * result); + +void npfring_close(struct npfring * npf); + +int npfring_set_bpf(struct npfring * npf, char const * bpf_filter); + +int npfring_datalink(struct npfring * npf); + +int npfring_enable(struct npfring * npf); + +int npfring_get_selectable_fd(struct npfring * npf); + +int npfring_recv(struct npfring * npf, struct pcap_pkthdr * pf_hdr); + +int npfring_stats(struct npfring * npf, struct npfring_stats * stats); + +#endif |