curve: minor: fix typo in variable
[netsniff-ng.git] / ring_rx.h
blob6f3cdabd5c9a7e5516f123a5d35ddb630bd3fc8e
1 /*
2 * netsniff-ng - the packet sniffing beast
3 * Copyright 2009, 2010 Daniel Borkmann.
4 * Subject to the GPL, version 2.
5 */
7 #ifndef RX_RING_H
8 #define RX_RING_H
10 #include <stdbool.h>
12 #include "ring.h"
13 #include "built_in.h"
15 extern void destroy_rx_ring(int sock, struct ring *ring);
16 extern void create_rx_ring(int sock, struct ring *ring, int verbose);
17 extern void mmap_rx_ring(int sock, struct ring *ring);
18 extern void alloc_rx_ring_frames(int sock, struct ring *ring);
19 extern void bind_rx_ring(int sock, struct ring *ring, int ifindex);
20 extern void setup_rx_ring_layout(int sock, struct ring *ring,
21 unsigned int size, bool jumbo_support, bool v3);
22 extern void sock_rx_net_stats(int sock);
24 static inline int user_may_pull_from_rx(struct tpacket2_hdr *hdr)
26 return ((hdr->tp_status & TP_STATUS_USER) == TP_STATUS_USER);
29 static inline int user_may_pull_from_rx_block(struct block_desc *pbd)
31 return ((pbd->h1.block_status & TP_STATUS_USER) == TP_STATUS_USER);
34 static inline void kernel_may_pull_from_rx(struct tpacket2_hdr *hdr)
36 hdr->tp_status = TP_STATUS_KERNEL;
39 static inline void kernel_may_pull_from_rx_block(struct block_desc *pbd)
41 pbd->h1.block_status = TP_STATUS_KERNEL;
44 #endif /* RX_RING_H */