all: import netsniff-ng 0.5.8-rc0 source
[netsniff-ng.git] / ring_rx.h
blob8d695e5313cda59d2119e5f0093df1a87e1e62dc
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 "ring.h"
11 #include "built_in.h"
13 extern void destroy_rx_ring(int sock, struct ring *ring);
14 extern void create_rx_ring(int sock, struct ring *ring, int verbose);
15 extern void mmap_rx_ring(int sock, struct ring *ring);
16 extern void alloc_rx_ring_frames(struct ring *ring);
17 extern void bind_rx_ring(int sock, struct ring *ring, int ifindex);
18 extern void setup_rx_ring_layout(int sock, struct ring *ring,
19 unsigned int size, int jumbo_support);
21 static inline int user_may_pull_from_rx(struct tpacket2_hdr *hdr)
23 return ((hdr->tp_status & TP_STATUS_USER) == TP_STATUS_USER);
26 static inline void kernel_may_pull_from_rx(struct tpacket2_hdr *hdr)
28 hdr->tp_status = TP_STATUS_KERNEL;
31 #endif /* RX_RING_H */