]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/starter/keywords.h
85b84723052d1de74b3549bd29f7c6e4c7452599
[thirdparty/strongswan.git] / src / starter / keywords.h
1 /* strongSwan keywords
2 * Copyright (C) 2005 Andreas Steffen
3 * Hochschule fuer Technik Rapperswil, Switzerland
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * for more details.
14 */
15
16 #ifndef _KEYWORDS_H_
17 #define _KEYWORDS_H_
18
19 typedef enum {
20 /* config setup keywords */
21 KW_INTERFACES,
22 KW_DUMPDIR,
23 KW_CHARONSTART,
24 KW_PLUTOSTART,
25
26 /* pluto/charon keywords */
27 KW_PLUTODEBUG,
28 KW_CHARONDEBUG,
29 KW_PREPLUTO,
30 KW_POSTPLUTO,
31 KW_PLUTOSTDERRLOG,
32 KW_UNIQUEIDS,
33 KW_OVERRIDEMTU,
34 KW_CRLCHECKINTERVAL,
35 KW_CACHECRLS,
36 KW_STRICTCRLPOLICY,
37 KW_NOCRSEND,
38 KW_NAT_TRAVERSAL,
39 KW_KEEP_ALIVE,
40 KW_FORCE_KEEPALIVE,
41 KW_VIRTUAL_PRIVATE,
42 KW_PKCS11MODULE,
43 KW_PKCS11INITARGS,
44 KW_PKCS11KEEPSTATE,
45 KW_PKCS11PROXY,
46
47 #define KW_PLUTO_FIRST KW_PLUTODEBUG
48 #define KW_PLUTO_LAST KW_PKCS11PROXY
49
50 /* KLIPS keywords */
51 KW_KLIPSDEBUG,
52 KW_FRAGICMP,
53 KW_PACKETDEFAULT,
54 KW_HIDETOS,
55
56 #define KW_KLIPS_FIRST KW_KLIPSDEBUG
57 #define KW_KLIPS_LAST KW_HIDETOS
58
59 #define KW_SETUP_FIRST KW_INTERFACES
60 #define KW_SETUP_LAST KW_HIDETOS
61
62 /* conn section keywords */
63 KW_CONN_NAME,
64 KW_CONN_SETUP,
65 KW_KEYEXCHANGE,
66 KW_TYPE,
67 KW_PFS,
68 KW_COMPRESS,
69 KW_INSTALLPOLICY,
70 KW_AUTH,
71 KW_AUTHBY,
72 KW_EAP,
73 KW_EAP_IDENTITY,
74 KW_MOBIKE,
75 KW_FORCEENCAPS,
76 KW_IKELIFETIME,
77 KW_KEYLIFE,
78 KW_REKEYMARGIN,
79 KW_LIFEBYTES,
80 KW_MARGINBYTES,
81 KW_LIFEPACKETS,
82 KW_MARGINPACKETS,
83 KW_KEYINGTRIES,
84 KW_REKEYFUZZ,
85 KW_REKEY,
86 KW_REAUTH,
87 KW_IKE,
88 KW_ESP,
89 KW_PFSGROUP,
90 KW_DPDDELAY,
91 KW_DPDTIMEOUT,
92 KW_DPDACTION,
93 KW_INACTIVITY,
94 KW_MODECONFIG,
95 KW_XAUTH,
96 KW_XAUTH_IDENTITY,
97 KW_MEDIATION,
98 KW_MEDIATED_BY,
99 KW_ME_PEERID,
100 KW_REQID,
101
102 #define KW_CONN_FIRST KW_CONN_SETUP
103 #define KW_CONN_LAST KW_REQID
104
105 /* ca section keywords */
106 KW_CA_NAME,
107 KW_CA_SETUP,
108 KW_CACERT,
109 KW_LDAPHOST,
110 KW_LDAPBASE,
111 KW_CRLURI,
112 KW_CRLURI2,
113 KW_OCSPURI,
114 KW_OCSPURI2,
115 KW_CERTURIBASE,
116
117 #define KW_CA_FIRST KW_CA_SETUP
118 #define KW_CA_LAST KW_CERTURIBASE
119
120 /* end keywords */
121 KW_HOST,
122 KW_NEXTHOP,
123 KW_IKEPORT,
124 KW_SUBNET,
125 KW_SUBNETWITHIN,
126 KW_PROTOPORT,
127 KW_SOURCEIP,
128 KW_NATIP,
129 KW_FIREWALL,
130 KW_HOSTACCESS,
131 KW_ALLOWANY,
132 KW_UPDOWN,
133 KW_AUTH1,
134 KW_AUTH2,
135 KW_ID,
136 KW_ID2,
137 KW_RSASIGKEY,
138 KW_CERT,
139 KW_CERT2,
140 KW_SENDCERT,
141 KW_CA,
142 KW_CA2,
143 KW_GROUPS,
144 KW_IFACE,
145
146 #define KW_END_FIRST KW_HOST
147 #define KW_END_LAST KW_IFACE
148
149 /* left end keywords */
150 KW_LEFT,
151 KW_LEFTIKEPORT,
152 KW_LEFTNEXTHOP,
153 KW_LEFTSUBNET,
154 KW_LEFTSUBNETWITHIN,
155 KW_LEFTPROTOPORT,
156 KW_LEFTSOURCEIP,
157 KW_LEFTNATIP,
158 KW_LEFTFIREWALL,
159 KW_LEFTHOSTACCESS,
160 KW_LEFTALLOWANY,
161 KW_LEFTUPDOWN,
162 KW_LEFTAUTH,
163 KW_LEFTAUTH2,
164 KW_LEFTID,
165 KW_LEFTID2,
166 KW_LEFTRSASIGKEY,
167 KW_LEFTCERT,
168 KW_LEFTCERT2,
169 KW_LEFTSENDCERT,
170 KW_LEFTCA,
171 KW_LEFTCA2,
172 KW_LEFTGROUPS,
173
174 #define KW_LEFT_FIRST KW_LEFT
175 #define KW_LEFT_LAST KW_LEFTGROUPS
176
177 /* right end keywords */
178 KW_RIGHT,
179 KW_RIGHTIKEPORT,
180 KW_RIGHTNEXTHOP,
181 KW_RIGHTSUBNET,
182 KW_RIGHTSUBNETWITHIN,
183 KW_RIGHTPROTOPORT,
184 KW_RIGHTSOURCEIP,
185 KW_RIGHTNATIP,
186 KW_RIGHTFIREWALL,
187 KW_RIGHTHOSTACCESS,
188 KW_RIGHTALLOWANY,
189 KW_RIGHTUPDOWN,
190 KW_RIGHTAUTH,
191 KW_RIGHTAUTH2,
192 KW_RIGHTID,
193 KW_RIGHTID2,
194 KW_RIGHTRSASIGKEY,
195 KW_RIGHTCERT,
196 KW_RIGHTCERT2,
197 KW_RIGHTSENDCERT,
198 KW_RIGHTCA,
199 KW_RIGHTCA2,
200 KW_RIGHTGROUPS,
201
202 #define KW_RIGHT_FIRST KW_RIGHT
203 #define KW_RIGHT_LAST KW_RIGHTGROUPS
204
205 /* general section keywords */
206 KW_ALSO,
207 KW_AUTO
208
209 } kw_token_t;
210
211 #endif /* _KEYWORDS_H_ */
212