diff options
author | Martin Willi <martin@strongswan.org> | 2007-06-26 13:04:13 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2007-06-26 13:04:13 +0000 |
commit | 2b3100b5d075d0146570174dd70fa9e9ff775479 (patch) | |
tree | b9c5d1898da751901cae6dfae1352a636aed77a4 /src/charon/kernel/kernel_interface.h | |
parent | 361712fe37cddd7f056e6316a5baca125d08aa8c (diff) | |
download | strongswan-2b3100b5d075d0146570174dd70fa9e9ff775479.tar.bz2 strongswan-2b3100b5d075d0146570174dd70fa9e9ff775479.tar.xz |
simple roaming of the client works (not MOBIKE conform yet!)
Diffstat (limited to 'src/charon/kernel/kernel_interface.h')
-rw-r--r-- | src/charon/kernel/kernel_interface.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/charon/kernel/kernel_interface.h b/src/charon/kernel/kernel_interface.h index 62acb45bd..d3d3c9b70 100644 --- a/src/charon/kernel/kernel_interface.h +++ b/src/charon/kernel/kernel_interface.h @@ -145,21 +145,20 @@ struct kernel_interface_t { * create a new SA and delete the old one. * * @param this calling object - * @param dst destination address for this SA * @param spi SPI of the SA * @param protocol protocol for this SA (ESP/AH) - * @param new_src new source address for this SA - * @param new_dst new destination address for this SA - * @param src_changes changes in src - * @param dst_changes changes in dst + * @param src current source address + * @param dst current destination address + * @param new_src new source address + * @param new_dst new destination address * @return * - SUCCESS * - FAILED if kernel comm failed */ - status_t (*update_sa)(kernel_interface_t *this, host_t *dst, u_int32_t spi, - protocol_id_t protocol, - host_t *new_src, host_t *new_dst, - host_diff_t src_changes, host_diff_t dst_changes); + status_t (*update_sa)(kernel_interface_t *this, + u_int32_t spi, protocol_id_t protocol, + host_t *src, host_t *dst, + host_t *new_src, host_t *new_dst); /** * @brief Query the use time of an SA. |