aboutsummaryrefslogtreecommitdiffstats
path: root/main/strongswan/1005-ikev1-message-priorities.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/strongswan/1005-ikev1-message-priorities.patch')
-rw-r--r--main/strongswan/1005-ikev1-message-priorities.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/main/strongswan/1005-ikev1-message-priorities.patch b/main/strongswan/1005-ikev1-message-priorities.patch
deleted file mode 100644
index f7bb7ac691..0000000000
--- a/main/strongswan/1005-ikev1-message-priorities.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/src/libcharon/processing/jobs/process_message_job.c b/src/libcharon/processing/jobs/process_message_job.c
-index a6795e7..bb77b3d 100644
---- a/src/libcharon/processing/jobs/process_message_job.c
-+++ b/src/libcharon/processing/jobs/process_message_job.c
-@@ -90,14 +90,20 @@ METHOD(job_t, get_priority, job_priority_t,
- switch (this->message->get_exchange_type(this->message))
- {
- case IKE_AUTH:
-+ case ID_PROT:
-+ case AUTH_ONLY:
-+ case AGGRESSIVE:
- /* IKE auth is rather expensive and often blocking, low priority */
- return JOB_PRIO_LOW;
- case INFORMATIONAL:
-+ case INFORMATIONAL_V1:
-+ case TRANSACTION:
- /* INFORMATIONALs are inexpensive, for DPD we should have low
- * reaction times */
- return JOB_PRIO_HIGH;
- case IKE_SA_INIT:
- case CREATE_CHILD_SA:
-+ case QUICK_MODE:
- default:
- /* IKE_SA_INIT is expensive, but we will drop them in the receiver
- * if we are overloaded */