~ubuntu-branches/ubuntu/precise/linux-lowlatency/precise

« back to all changes in this revision

Viewing changes to include/linux/netfilter/xt_NFQUEUE.h

  • Committer: Package Import Robot
  • Author(s): Alessio Igor Bogani
  • Date: 2011-10-26 11:13:05 UTC
  • Revision ID: package-import@ubuntu.com-20111026111305-tz023xykf0i6eosh
Tags: upstream-3.2.0
ImportĀ upstreamĀ versionĀ 3.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* iptables module for using NFQUEUE mechanism
 
2
 *
 
3
 * (C) 2005 Harald Welte <laforge@netfilter.org>
 
4
 *
 
5
 * This software is distributed under GNU GPL v2, 1991
 
6
 * 
 
7
*/
 
8
#ifndef _XT_NFQ_TARGET_H
 
9
#define _XT_NFQ_TARGET_H
 
10
 
 
11
#include <linux/types.h>
 
12
 
 
13
/* target info */
 
14
struct xt_NFQ_info {
 
15
        __u16 queuenum;
 
16
};
 
17
 
 
18
struct xt_NFQ_info_v1 {
 
19
        __u16 queuenum;
 
20
        __u16 queues_total;
 
21
};
 
22
 
 
23
struct xt_NFQ_info_v2 {
 
24
        __u16 queuenum;
 
25
        __u16 queues_total;
 
26
        __u16 bypass;
 
27
};
 
28
 
 
29
#endif /* _XT_NFQ_TARGET_H */