]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/libcharon/sa/task.c
Merge branch 'tkm-multi-ke'
[thirdparty/strongswan.git] / src / libcharon / sa / task.c
1 /*
2 * Copyright (C) 2007 Tobias Brunner
3 * Copyright (C) 2007 Martin Willi
4 *
5 * Copyright (C) secunet Security Networks AG
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 * for more details.
16 */
17
18 #include "task.h"
19
20 ENUM(task_type_names, TASK_IKE_INIT, TASK_ISAKMP_CERT_POST,
21 "IKE_INIT",
22 "IKE_NATD",
23 "IKE_MOBIKE",
24 "IKE_AUTH",
25 "IKE_AUTH_LIFETIME",
26 "IKE_CERT_PRE",
27 "IKE_CERT_POST",
28 "IKE_CONFIG",
29 "IKE_REKEY",
30 "IKE_REAUTH",
31 "IKE_REAUTH_COMPLETE",
32 "IKE_REDIRECT",
33 "IKE_VERIFY_PEER_CERT",
34 "IKE_MID_SYNC",
35 "IKE_DELETE",
36 "IKE_DPD",
37 "IKE_VENDOR",
38 "IKE_ESTABLISH",
39 #ifdef ME
40 "IKE_ME",
41 #endif /* ME */
42 "CHILD_CREATE",
43 "CHILD_DELETE",
44 "CHILD_REKEY",
45 "MAIN_MODE",
46 "AGGRESSIVE_MODE",
47 "INFORMATIONAL",
48 "ISAKMP_DELETE",
49 "XAUTH",
50 "MODE_CONFIG",
51 "QUICK_MODE",
52 "QUICK_DELETE",
53 "ISAKMP_VENDOR",
54 "ISAKMP_NATD",
55 "ISAKMP_DPD",
56 "ISAKMP_CERT_PRE",
57 "ISAKMP_CERT_POST",
58 );