aboutsummaryrefslogtreecommitdiffstats
path: root/src/libhydra/kernel/kernel_ipsec.h
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2013-10-11 10:24:27 +0200
committerMartin Willi <martin@revosec.ch>2013-10-11 10:25:35 +0200
commit11282d0054d8a51f184a6f726f7f180ccf60e456 (patch)
tree8d7cceebfa783449fbe3d164cb0cdd5c3e2cafcc /src/libhydra/kernel/kernel_ipsec.h
parentb59bcba2b38dda5f0f6301b7ae90acc58b4a069b (diff)
parentd53002f088c588bb65215bb9a6e5100ba321738e (diff)
downloadstrongswan-11282d0054d8a51f184a6f726f7f180ccf60e456.tar.bz2
strongswan-11282d0054d8a51f184a6f726f7f180ccf60e456.tar.xz
Merge branch 'libipsec-usestats'
Brings SA usage statistics and volume based expiration to libipsec and the associated kernel-libipsec plugin. Additionally removes any ESPv3 style TFC padding found in incoming packets.
Diffstat (limited to 'src/libhydra/kernel/kernel_ipsec.h')
-rw-r--r--src/libhydra/kernel/kernel_ipsec.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libhydra/kernel/kernel_ipsec.h b/src/libhydra/kernel/kernel_ipsec.h
index 413e5920f..25f5b38fd 100644
--- a/src/libhydra/kernel/kernel_ipsec.h
+++ b/src/libhydra/kernel/kernel_ipsec.h
@@ -156,12 +156,12 @@ struct kernel_ipsec_t {
* @param mark optional mark for this SA
* @param[out] bytes the number of bytes processed by SA
* @param[out] packets number of packets processed by SA
- * @param[out] time last time of SA use
+ * @param[out] time last (monotonic) time of SA use
* @return SUCCESS if operation completed
*/
status_t (*query_sa) (kernel_ipsec_t *this, host_t *src, host_t *dst,
u_int32_t spi, u_int8_t protocol, mark_t mark,
- u_int64_t *bytes, u_int64_t *packets, u_int32_t *time);
+ u_int64_t *bytes, u_int64_t *packets, time_t *time);
/**
* Delete a previusly installed SA from the SAD.
@@ -228,7 +228,7 @@ struct kernel_ipsec_t {
traffic_selector_t *src_ts,
traffic_selector_t *dst_ts,
policy_dir_t direction, mark_t mark,
- u_int32_t *use_time);
+ time_t *use_time);
/**
* Remove a policy from the SPD.