]> git.ipfire.org Git - thirdparty/strongswan.git/blob - programs/charon/charon/queues/jobs/job.c
- renamed get_block_size of hasher
[thirdparty/strongswan.git] / programs / charon / charon / queues / jobs / job.c
1 /**
2 * @file job.c
3 *
4 * @brief Interface additions to job_t.
5 *
6 */
7
8 /*
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
21 */
22
23
24 #include "job.h"
25
26
27 mapping_t job_type_m[] = {
28 {INCOMING_PACKET, "INCOMING_PACKET"},
29 {RETRANSMIT_REQUEST, "RETRANSMIT_REQUEST"},
30 {INITIATE_IKE_SA, "INITIATE_IKE_SA"},
31 {DELETE_HALF_OPEN_IKE_SA, "DELETE_HALF_OPEN_IKE_SA"},
32 {DELETE_ESTABLISHED_IKE_SA, "DELETE_ESTABLISHED_IKE_SA"},
33 {MAPPING_END, NULL}
34 };