1/****************************************************************************
2 ****************************************************************************
3 ***
4 ***   This header was automatically generated from a Linux kernel header
5 ***   of the same name, to make information necessary for userspace to
6 ***   call into the kernel available to libc.  It contains only constants,
7 ***   structures, and macros generated from the original header, and thus,
8 ***   contains no copyrightable information.
9 ***
10 ****************************************************************************
11 ****************************************************************************/
12#ifndef _IPT_LOG_H
13#define _IPT_LOG_H
14
15#define IPT_LOG_TCPSEQ 0x01
16#define IPT_LOG_TCPOPT 0x02
17#define IPT_LOG_IPOPT 0x04
18#define IPT_LOG_UID 0x08
19#define IPT_LOG_NFLOG 0x10
20#define IPT_LOG_MASK 0x1f
21
22struct ipt_log_info {
23 unsigned char level;
24 unsigned char logflags;
25 char prefix[30];
26};
27
28#endif
29