aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter/nf_conntrack_sane.h
diff options
context:
space:
mode:
authorMichal Schmidt <mschmidt@redhat.com>2007-02-07 15:05:12 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2007-02-08 12:39:09 -0800
commit6fecd1985116fb08bdee3b9db6719e159fe5e43d (patch)
tree5348319657ec1cdfa8cdf9fba4e6bbad046dc811 /include/linux/netfilter/nf_conntrack_sane.h
parent[IRLAN]: handle out of memory errors (diff)
downloadlinux-dev-6fecd1985116fb08bdee3b9db6719e159fe5e43d.tar.xz
linux-dev-6fecd1985116fb08bdee3b9db6719e159fe5e43d.zip
[NETFILTER]: Add SANE connection tracking helper
This is nf_conntrack_sane, a netfilter connection tracking helper module for the SANE protocol used by the 'saned' daemon to make scanners available via network. The SANE protocol uses separate control & data connections, similar to passive FTP. The helper module is needed to recognize the data connection as RELATED to the control one. Signed-off-by: Michal Schmidt <mschmidt@redhat.com> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netfilter/nf_conntrack_sane.h')
-rw-r--r--include/linux/netfilter/nf_conntrack_sane.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/linux/netfilter/nf_conntrack_sane.h b/include/linux/netfilter/nf_conntrack_sane.h
new file mode 100644
index 000000000000..4767d6e23e97
--- /dev/null
+++ b/include/linux/netfilter/nf_conntrack_sane.h
@@ -0,0 +1,21 @@
+#ifndef _NF_CONNTRACK_SANE_H
+#define _NF_CONNTRACK_SANE_H
+/* SANE tracking. */
+
+#ifdef __KERNEL__
+
+#define SANE_PORT 6566
+
+enum sane_state {
+ SANE_STATE_NORMAL,
+ SANE_STATE_START_REQUESTED,
+};
+
+/* This structure exists only once per master */
+struct nf_ct_sane_master {
+ enum sane_state state;
+};
+
+#endif /* __KERNEL__ */
+
+#endif /* _NF_CONNTRACK_SANE_H */