source: rtems-libbsd/ipsec-tools/src/setkey/parse.h @ b376ae1

55-freebsd-126-freebsd-12
Last change on this file since b376ae1 was b376ae1, checked in by Christian Mauderer <christian.mauderer@…>, on 05/03/18 at 12:15:11

ipsec-tools: Port libipsec, setkey and racoon.

Note that this replaces the libipsec from FreeBSD with the one provided
by ipsec-tools.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1#define EOT 257
2#define SLASH 258
3#define BLCL 259
4#define ELCL 260
5#define ADD 261
6#define GET 262
7#define DELETE 263
8#define DELETEALL 264
9#define FLUSH 265
10#define DUMP 266
11#define EXIT 267
12#define PR_ESP 268
13#define PR_AH 269
14#define PR_IPCOMP 270
15#define PR_ESPUDP 271
16#define PR_TCP 272
17#define F_PROTOCOL 273
18#define F_AUTH 274
19#define F_ENC 275
20#define F_REPLAY 276
21#define F_COMP 277
22#define F_RAWCPI 278
23#define F_MODE 279
24#define MODE 280
25#define F_REQID 281
26#define F_EXT 282
27#define EXTENSION 283
28#define NOCYCLICSEQ 284
29#define ALG_AUTH 285
30#define ALG_AUTH_NOKEY 286
31#define ALG_ENC 287
32#define ALG_ENC_NOKEY 288
33#define ALG_ENC_DESDERIV 289
34#define ALG_ENC_DES32IV 290
35#define ALG_ENC_OLD 291
36#define ALG_COMP 292
37#define F_LIFETIME_HARD 293
38#define F_LIFETIME_SOFT 294
39#define F_LIFEBYTE_HARD 295
40#define F_LIFEBYTE_SOFT 296
41#define DECSTRING 297
42#define QUOTEDSTRING 298
43#define HEXSTRING 299
44#define STRING 300
45#define ANY 301
46#define SPDADD 302
47#define SPDUPDATE 303
48#define SPDDELETE 304
49#define SPDDUMP 305
50#define SPDFLUSH 306
51#define F_POLICY 307
52#define PL_REQUESTS 308
53#define F_AIFLAGS 309
54#define TAGGED 310
55#define SECURITY_CTX 311
56#ifdef YYSTYPE
57#undef  YYSTYPE_IS_DECLARED
58#define YYSTYPE_IS_DECLARED 1
59#endif
60#ifndef YYSTYPE_IS_DECLARED
61#define YYSTYPE_IS_DECLARED 1
62typedef union {
63        int num;
64        unsigned long ulnum;
65        vchar_t val;
66        struct addrinfo *res;
67} YYSTYPE;
68#endif /* !YYSTYPE_IS_DECLARED */
69extern YYSTYPE setkeyyylval;
Note: See TracBrowser for help on using the repository browser.