]> git.ipfire.org Git - people/ms/strongswan.git/blame - programs/charon/charon/queues/jobs/job.c
- import of strongswan-2.7.0
[people/ms/strongswan.git] / programs / charon / charon / queues / jobs / job.c
CommitLineData
0e39bf8a
JH
1/**
2 * @file job.c
df917df7 3 *
df3c59d0 4 * @brief Interface additions to job_t.
df917df7 5 *
0e39bf8a
JH
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
f07a80d1 23
88878242
MW
24#include "job.h"
25
79538669 26
5dee5e68
MW
27mapping_t job_type_m[] = {
28 {INCOMING_PACKET, "INCOMING_PACKET"},
29 {RETRANSMIT_REQUEST, "RETRANSMIT_REQUEST"},
30 {INITIATE_IKE_SA, "INITIATE_IKE_SA"},
e314700c
JH
31 {DELETE_HALF_OPEN_IKE_SA, "DELETE_HALF_OPEN_IKE_SA"},
32 {DELETE_ESTABLISHED_IKE_SA, "DELETE_ESTABLISHED_IKE_SA"},
5dee5e68
MW
33 {MAPPING_END, NULL}
34};