diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-10 08:21:12 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-10 08:21:12 +0000 |
commit | 11975d54514e6e47840cc62f942c7ceca166d137 (patch) | |
tree | 7d5226058f71381d0ca64b3bf52c3cef1fc0119b /Source/charon/configuration.c | |
parent | 1dab9d027321fb5ec535d714bedf0d3dcd088bac (diff) | |
download | strongswan-11975d54514e6e47840cc62f942c7ceca166d137.tar.bz2 strongswan-11975d54514e6e47840cc62f942c7ceca166d137.tar.xz |
- source code fully documented
Diffstat (limited to 'Source/charon/configuration.c')
-rw-r--r-- | Source/charon/configuration.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/Source/charon/configuration.c b/Source/charon/configuration.c index f44056d18..46e961cb4 100644 --- a/Source/charon/configuration.c +++ b/Source/charon/configuration.c @@ -1,10 +1,9 @@ /** * @file configuration.c * - * @brief class configuration_t. + * @brief Configuration class used to store IKE_SA-configurations. * - * - * Object of this type represents a configuration for an IKE_SA and its child_sa's + * Object of this type represents a configuration for an IKE_SA and its child_sa's. * */ @@ -33,24 +32,24 @@ #include "configuration.h" /** - * private data of an configuration_t object + * Private data of an configuration_t object */ typedef struct private_configuration_s private_configuration_t; struct private_configuration_s { /** - * public part of a configuration_t object + * Public part of a configuration_t object */ configuration_t public; - /* private values */ - + /* Private values */ }; /** - * @brief implements function destroy of configuration_t + * Implements function destroy of configuration_t. + * See #configuration_s.destroy for description. */ static status_t destroy (private_configuration_t *this) { @@ -63,7 +62,7 @@ static status_t destroy (private_configuration_t *this) } /* - * described in header-file + * Described in header-file */ configuration_t * configuration_create() { |