Use high priority for retransmit/dpd/keepalive jobs

This commit is contained in:
Martin Willi 2011-05-02 13:56:49 +02:00
parent ea69c70d0e
commit 06f0ede759
3 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ METHOD(job_t, execute, void,
METHOD(job_t, get_priority, job_priority_t,
private_retransmit_job_t *this)
{
return JOB_PRIO_MEDIUM;
return JOB_PRIO_HIGH;
}
/*

View File

@ -69,7 +69,7 @@ METHOD(job_t, execute, void,
METHOD(job_t, get_priority, job_priority_t,
private_send_dpd_job_t *this)
{
return JOB_PRIO_MEDIUM;
return JOB_PRIO_HIGH;
}
/*

View File

@ -63,7 +63,7 @@ METHOD(job_t, execute, void,
METHOD(job_t, get_priority, job_priority_t,
private_send_keepalive_job_t *this)
{
return JOB_PRIO_MEDIUM;
return JOB_PRIO_HIGH;
}
/*