aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/config/configuration.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/charon/config/configuration.h')
-rwxr-xr-xsrc/charon/config/configuration.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/charon/config/configuration.h b/src/charon/config/configuration.h
index 2bb0b106e..77d1fd85d 100755
--- a/src/charon/config/configuration.h
+++ b/src/charon/config/configuration.h
@@ -40,19 +40,15 @@ struct configuration_t {
/**
* @brief Returns the retransmit timeout.
*
- * A return value of zero means the request should not be retransmitted again.
- * The retransmission algorithm uses sequences of retransmits, in which
- * every sequence contains exponential delayed retransmits. These
- * sequences are compareable to the keyingtries mechanism used in pluto.
+ * A return value of zero means the request should not be
+ * retransmitted again.
*
* @param this calling object
* @param retransmitted number of times a message was retransmitted so far
- * @param max_sequences maximum number of retransmission sequences to allow
- * @return time in milliseconds, when to schedule next retransmit
+ * @return time in milliseconds, when to do next retransmit
*/
u_int32_t (*get_retransmit_timeout) (configuration_t *this,
- u_int32_t retransmitted,
- u_int32_t max_sequences);
+ u_int32_t retransmitted);
/**
* @brief Returns the timeout for an half open IKE_SA in ms.