aboutsummaryrefslogtreecommitdiff
path: root/print-nflog.c
diff options
context:
space:
mode:
Diffstat (limited to 'print-nflog.c')
-rw-r--r--print-nflog.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/print-nflog.c b/print-nflog.c
index 4234022c..41cbf788 100644
--- a/print-nflog.c
+++ b/print-nflog.c
@@ -25,23 +25,24 @@
* DAMAGE.
*/
-#define NETDISSECT_REWORKED
+/* \summary: DLT_NFLOG printer */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
-#include <tcpdump-stdinc.h>
+#include <netdissect-stdinc.h>
-#include "interface.h"
+#include "netdissect.h"
#if defined(DLT_NFLOG) && defined(HAVE_PCAP_NFLOG_H)
#include <pcap/nflog.h>
static const struct tok nflog_values[] = {
{ AF_INET, "IPv4" },
-#ifdef INET6
+#ifdef AF_INET6
{ AF_INET6, "IPv6" },
-#endif /*INET6*/
+#endif /*AF_INET6*/
{ 0, NULL }
};