aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/sa
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2012-01-10 17:28:25 +0100
committerMartin Willi <martin@revosec.ch>2012-03-20 17:31:35 +0100
commit214d4e409049147aa6fa87c1e3f2aa5262a7e32b (patch)
treea03cbd76fd1fe4f8ef3f84189104ea4d26e210ea /src/libcharon/sa
parentff6b084ac4e9ca27a306a2836f7b341d9129ea5b (diff)
downloadstrongswan-214d4e409049147aa6fa87c1e3f2aa5262a7e32b.tar.bz2
strongswan-214d4e409049147aa6fa87c1e3f2aa5262a7e32b.tar.xz
Added missing DPD task name
Diffstat (limited to 'src/libcharon/sa')
-rw-r--r--src/libcharon/sa/task.c1
-rwxr-xr-xsrc/libcharon/sa/task.h5
2 files changed, 3 insertions, 3 deletions
diff --git a/src/libcharon/sa/task.c b/src/libcharon/sa/task.c
index 0c08a2874..4336b23ff 100644
--- a/src/libcharon/sa/task.c
+++ b/src/libcharon/sa/task.c
@@ -46,6 +46,7 @@ ENUM(task_type_names, TASK_IKE_INIT, TASK_ISAKMP_CERT_POST,
"QUICK_DELETE",
"ISAKMP_VENDOR",
"ISAKMP_NATD",
+ "ISAKMP_DPD",
"ISAKMP_CERT_PRE",
"ISAKMP_CERT_POST",
);
diff --git a/src/libcharon/sa/task.h b/src/libcharon/sa/task.h
index 1b42bf1a4..255b9a393 100755
--- a/src/libcharon/sa/task.h
+++ b/src/libcharon/sa/task.h
@@ -89,13 +89,12 @@ enum task_type_t {
TASK_ISAKMP_VENDOR,
/** IKEv1 NAT detection */
TASK_ISAKMP_NATD,
+ /** IKEv1 DPD */
+ TASK_ISAKMP_DPD,
/** IKEv1 pre-authentication certificate handling */
TASK_ISAKMP_CERT_PRE,
/** IKEv1 post-authentication certificate handling */
TASK_ISAKMP_CERT_POST,
- /** IKEv1 DPD */
- TASK_ISAKMP_DPD,
-
};
/**