aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/control/controller.h
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2014-10-27 14:03:32 +0100
committerMartin Willi <martin@revosec.ch>2015-02-20 13:34:50 +0100
commit971a91685da640363651e7a9a9edb9dfd94b7fe5 (patch)
tree475ebd5150fcc4eaec2c0eeaeaa6838110ec328f /src/libcharon/control/controller.h
parente4a131b1cee111622c95e856809982c66cf8806c (diff)
downloadstrongswan-971a91685da640363651e7a9a9edb9dfd94b7fe5.tar.bz2
strongswan-971a91685da640363651e7a9a9edb9dfd94b7fe5.tar.xz
controller: Use the CHILD_SA unique_id to terminate CHILD_SAs
Diffstat (limited to 'src/libcharon/control/controller.h')
-rw-r--r--src/libcharon/control/controller.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcharon/control/controller.h b/src/libcharon/control/controller.h
index 222285cde..02f4ebb2b 100644
--- a/src/libcharon/control/controller.h
+++ b/src/libcharon/control/controller.h
@@ -118,7 +118,7 @@ struct controller_t {
* If a callback is provided the function is synchronous and thus blocks
* until the CHILD_SA is properly deleted, or the call timed out.
*
- * @param reqid reqid of the CHILD_SA to terminate
+ * @param unique_id CHILD_SA unique ID to terminate
* @param cb logging callback
* @param param parameter to include in each call of cb
* @param timeout timeout in ms to wait for callbacks, 0 to disable
@@ -128,7 +128,7 @@ struct controller_t {
* - NEED_MORE, if callback returned FALSE
* - OUT_OF_RES if timed out
*/
- status_t (*terminate_child)(controller_t *this, u_int32_t reqid,
+ status_t (*terminate_child)(controller_t *this, u_int32_t unique_id,
controller_cb_t callback, void *param,
u_int timeout);