aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2006-09-25 06:10:02 +0000
committerAndreas Steffen <andreas.steffen@strongswan.org>2006-09-25 06:10:02 +0000
commit7968c6a5ffc76eed23afa73cd33393c4cd35e811 (patch)
tree0c70bccacaae55865d6b46c70e5b6d4e00bf34b7 /src
parenta8960f997a351aa71bc2d0df7f3e692369ddab52 (diff)
downloadstrongswan-7968c6a5ffc76eed23afa73cd33393c4cd35e811.tar.bz2
strongswan-7968c6a5ffc76eed23afa73cd33393c4cd35e811.tar.xz
added hostaccess support
Diffstat (limited to 'src')
-rw-r--r--src/charon/sa/child_sa.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/charon/sa/child_sa.h b/src/charon/sa/child_sa.h
index e8e97c607..1bc396695 100644
--- a/src/charon/sa/child_sa.h
+++ b/src/charon/sa/child_sa.h
@@ -311,6 +311,7 @@ struct child_sa_t {
* @param soft_lifetime time before rekeying
* @param hard_lifteime time before delete
* @param script updown script to use when calling child_sa_t.script()
+ * @param hostaccess allow host access (needed by updown script)
* @param use_natt TRUE if NAT traversal is used
* @return child_sa_t object
*
@@ -319,6 +320,6 @@ struct child_sa_t {
child_sa_t * child_sa_create(u_int32_t rekey_reqid, host_t *me, host_t *other,
identification_t *my_id, identification_t* other_id,
u_int32_t soft_lifetime, u_int32_t hard_lifetime,
- char *script, bool use_natt);
+ char *script, bool hostaccess, bool use_natt);
#endif /*CHILD_SA_H_*/