suricata
source-pcap.h
Go to the documentation of this file.
1/* Copyright (C) 2007-2019 Open Information Security Foundation
2 *
3 * You can copy, redistribute or modify this Program under the terms of
4 * the GNU General Public License version 2 as published by the Free
5 * Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * version 2 along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15 * 02110-1301, USA.
16 */
17
18/**
19 * \file
20 *
21 * \author Victor Julien <victor@inliniac.net>
22 */
23
24#ifndef SURICATA_SOURCE_PCAP_H
25#define SURICATA_SOURCE_PCAP_H
26
29void PcapTranslateIPToDevice(char *pcap_dev, size_t len);
30
31#define LIBPCAP_COPYWAIT 500
32#define LIBPCAP_PROMISC 1
33
34/* per packet Pcap vars */
35typedef struct PcapPacketVars_
36{
37 uint32_t tenant_id;
39
40/** needs to be able to contain Windows adapter id's, so
41 * must be quite long. */
42#define PCAP_IFACE_NAME_LENGTH 128
43
44typedef struct PcapIfaceConfig_
45{
47 /* number of threads */
49 /* socket buffer size */
51 /* snapshot length */
53 /* promiscuous value */
55 /* BPF filter */
56 const char *bpf_filter;
58 SC_ATOMIC_DECLARE(unsigned int, ref);
59 void (*DerefFunc)(void *);
61
62#endif /* SURICATA_SOURCE_PCAP_H */
uint8_t len
ChecksumValidationMode
Definition decode.h:42
void PcapTranslateIPToDevice(char *pcap_dev, size_t len)
void TmModuleReceivePcapRegister(void)
Registration Function for ReceivePcap.
struct PcapIfaceConfig_ PcapIfaceConfig
void TmModuleDecodePcapRegister(void)
Registration Function for DecodePcap.
#define PCAP_IFACE_NAME_LENGTH
Definition source-pcap.h:42
struct PcapPacketVars_ PcapPacketVars
char iface[PCAP_IFACE_NAME_LENGTH]
Definition source-pcap.h:46
ChecksumValidationMode checksum_mode
Definition source-pcap.h:57
const char * bpf_filter
Definition source-pcap.h:56
void(* DerefFunc)(void *)
Definition source-pcap.h:59
SC_ATOMIC_DECLARE(unsigned int, ref)
uint32_t tenant_id
Definition source-pcap.h:37