• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iptables-1.4.x/include/linux/netfilter/
1#ifndef _XT_CONNMARK_H
2#define _XT_CONNMARK_H
3
4#include <linux/types.h>
5
6/* Copyright (C) 2002,2004 MARA Systems AB <http://www.marasystems.com>
7 * by Henrik Nordstrom <hno@marasystems.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 */
14
15enum {
16	XT_CONNMARK_SET = 0,
17	XT_CONNMARK_SAVE,
18	XT_CONNMARK_RESTORE,
19	XT_CONNMARK_SET_RETURN
20};
21
22struct xt_connmark_tginfo1 {
23	__u32 ctmark, ctmask, nfmask;
24	__u8 mode;
25};
26
27struct xt_connmark_mtinfo1 {
28	__u32 mark, mask;
29	__u8 invert;
30};
31
32#endif /*_XT_CONNMARK_H*/
33