mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
424 B
C
15 lines
424 B
C
/* Copyright (c) 2009 Victor Julien <victor@inliniac.net> */
|
|
|
|
#ifndef __SOURCE_PFRING_H__
|
|
#define __SOURCE_PFRING_H__
|
|
|
|
void TmModuleReceivePfringRegister (void);
|
|
void TmModuleDecodePfringRegister (void);
|
|
|
|
/* XXX replace with user configurable options */
|
|
#define LIBPFRING_SNAPLEN 1518
|
|
#define LIBPFRING_PROMISC 1
|
|
#define LIBPFRING_REENTRANT 0
|
|
#define LIBPFRING_WAIT_FOR_INCOMING 1
|
|
#endif /* __SOURCE_PFRING_H__ */
|