diff options
author | Martin Willi <martin@strongswan.org> | 2006-03-20 15:43:26 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-03-20 15:43:26 +0000 |
commit | 87a217f9f1640ed08dbe06564f6fbcd3cdfdeefb (patch) | |
tree | 928291a14cedbcb875d205b5a38527a37f515561 /Source/charon/config/connection_store.h | |
parent | e8d25806f3281b71d2512e926c08f50f72d5d505 (diff) | |
download | strongswan-87a217f9f1640ed08dbe06564f6fbcd3cdfdeefb.tar.bz2 strongswan-87a217f9f1640ed08dbe06564f6fbcd3cdfdeefb.tar.xz |
- works quite well now with ipsec.conf & ipsec starter
Diffstat (limited to 'Source/charon/config/connection_store.h')
-rwxr-xr-x | Source/charon/config/connection_store.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/charon/config/connection_store.h b/Source/charon/config/connection_store.h index aac10574b..8b80c0fea 100755 --- a/Source/charon/config/connection_store.h +++ b/Source/charon/config/connection_store.h @@ -33,7 +33,7 @@ typedef struct connection_store_t connection_store_t; * @brief The interface for a store of connection_t's. * * @b Constructors: - * - connection_store_create() + * - stroke_create() * * @ingroup config */ @@ -42,6 +42,8 @@ struct connection_store_t { /** * @brief Returns a connection definition identified by two IDs. * + * This call is usefull to get a connection identified by addresses. + * It may be used after kernel request for traffic protection. * The returned connection gets created/cloned and therefore must * be destroyed after usage. * @@ -57,6 +59,8 @@ struct connection_store_t { /** * @brief Returns a connection definition identified by two hosts. * + * This call is useful to get a connection which is identified by IDs + * rather than addresses, e.g. for connection setup on user request. * The returned connection gets created/cloned and therefore must * be destroyed after usage. * |