]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
Added strongswan.conf options to configure retransmission timeouts
authorMartin Willi <martin@strongswan.org>
Mon, 11 Jan 2010 15:42:12 +0000 (16:42 +0100)
committerMartin Willi <martin@strongswan.org>
Mon, 11 Jan 2010 15:42:12 +0000 (16:42 +0100)
src/charon/sa/task_manager.c
src/charon/sa/task_manager.h

index e6b012885a50b61791c902cb1e124804efd51e08..1de0c06f0012821f1a475173ecde8e9ea3d82eb0 100644 (file)
@@ -137,6 +137,21 @@ struct private_task_manager_t {
         * the task manager has been reset
         */
        bool reset;
+
+       /**
+        * Number of times we retransmit messages before giving up
+        */
+       u_int retransmit_tries;
+
+       /**
+        * Retransmission timeout
+        */
+       double retransmit_timeout;
+
+       /**
+        * Base to calculate retransmission timeout
+        */
+       double retransmit_base;
 };
 
 /**
@@ -212,10 +227,10 @@ static status_t retransmit(private_task_manager_t *this, u_int32_t message_id)
 
                if (mobike == NULL)
                {
-                       if (this->initiating.retransmitted <= RETRANSMIT_TRIES)
+                       if (this->initiating.retransmitted <= this->retransmit_tries)
                        {
-                               timeout = (u_int32_t)(RETRANSMIT_TIMEOUT *
-                                                       pow(RETRANSMIT_BASE, this->initiating.retransmitted));
+                               timeout = (u_int32_t)(this->retransmit_timeout * 1000.0 *
+                                       pow(this->retransmit_base, this->initiating.retransmitted));
                        }
                        else
                        {
@@ -1055,5 +1070,13 @@ task_manager_t *task_manager_create(ike_sa_t *ike_sa)
        this->passive_tasks = linked_list_create();
        this->reset = FALSE;
 
+       this->retransmit_tries = lib->settings->get_int(lib->settings,
+                                                               "charon.retransmit_tries", RETRANSMIT_TRIES);
+       this->retransmit_timeout = lib->settings->get_double(lib->settings,
+                                                               "charon.retransmit_timeout", RETRANSMIT_TIMEOUT);
+       this->retransmit_base = lib->settings->get_double(lib->settings,
+                                                               "charon.retransmit_base", RETRANSMIT_BASE);
+
        return &this->public;
 }
+
index 11c85a83769c7eaa06a34d6ebe7cd8d3e4bd29b0..720b7527ef3f955bc07bd6b9a5b896af2796671c 100644 (file)
@@ -31,9 +31,9 @@ typedef struct task_manager_t task_manager_t;
 #include <sa/tasks/task.h>
 
 /**
- * First retransmit timeout in milliseconds.
+ * First retransmit timeout in seconds.
  */
-#define RETRANSMIT_TIMEOUT 4000
+#define RETRANSMIT_TIMEOUT 4.0
 
 /**
  * Base which is raised to the power of the retransmission try.