aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ipsec.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/linux/ipsec.h
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'include/linux/ipsec.h')
-rw-r--r--include/linux/ipsec.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/include/linux/ipsec.h b/include/linux/ipsec.h
new file mode 100644
index 000000000000..d3c527616b5e
--- /dev/null
+++ b/include/linux/ipsec.h
@@ -0,0 +1,46 @@
1#ifndef _LINUX_IPSEC_H
2#define _LINUX_IPSEC_H
3
4/* The definitions, required to talk to KAME racoon IKE. */
5
6#include <linux/pfkeyv2.h>
7
8#define IPSEC_PORT_ANY 0
9#define IPSEC_ULPROTO_ANY 255
10#define IPSEC_PROTO_ANY 255
11
12enum {
13 IPSEC_MODE_ANY = 0, /* We do not support this for SA */
14 IPSEC_MODE_TRANSPORT = 1,
15 IPSEC_MODE_TUNNEL = 2
16};
17
18enum {
19 IPSEC_DIR_ANY = 0,
20 IPSEC_DIR_INBOUND = 1,
21 IPSEC_DIR_OUTBOUND = 2,
22 IPSEC_DIR_FWD = 3, /* It is our own */
23 IPSEC_DIR_MAX = 4,
24 IPSEC_DIR_INVALID = 5
25};
26
27enum {
28 IPSEC_POLICY_DISCARD = 0,
29 IPSEC_POLICY_NONE = 1,
30 IPSEC_POLICY_IPSEC = 2,
31 IPSEC_POLICY_ENTRUST = 3,
32 IPSEC_POLICY_BYPASS = 4
33};
34
35enum {
36 IPSEC_LEVEL_DEFAULT = 0,
37 IPSEC_LEVEL_USE = 1,
38 IPSEC_LEVEL_REQUIRE = 2,
39 IPSEC_LEVEL_UNIQUE = 3
40};
41
42#define IPSEC_MANUAL_REQID_MAX 0x3fff
43
44#define IPSEC_REPLAYWSIZE 32
45
46#endif /* _LINUX_IPSEC_H */