]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/charon/processing/jobs/job.c
adapt evaltest to changed debug output
[thirdparty/strongswan.git] / src / charon / processing / jobs / job.c
1 /**
2 * @file job.c
3 *
4 * @brief Interface additions to job_t.
5 *
6 */
7
8 /*
9 * Copyright (C) 2005-2006 Martin Willi
10 * Copyright (C) 2005 Jan Hutter
11 * Hochschule fuer Technik Rapperswil
12 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 *
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
20 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 * for more details.
22 */
23
24
25 #include "job.h"
26
27 ENUM(job_type_names, PROCESS_MESSAGE, SEND_DPD,
28 "PROCESS_MESSAGE",
29 "RETRANSMIT",
30 "INITIATE",
31 "ROUTE",
32 "ACQUIRE",
33 "DELETE_IKE_SA",
34 "DELETE_CHILD_SA",
35 "REKEY_CHILD_SA",
36 "REKEY_IKE_SA",
37 "SEND_KEEPALIVE",
38 "SEND_DPD",
39 );