aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/configuration.h
diff options
context:
space:
mode:
authorJan Hutter <jhutter@hsr.ch>2005-11-09 17:20:05 +0000
committerJan Hutter <jhutter@hsr.ch>2005-11-09 17:20:05 +0000
commitfd1a4d0a6bdc03968b9eb8b10d0af87685ffa536 (patch)
treeda573540873cf4d1015564376e6315f4fe012c9b /Source/charon/configuration.h
parentf7c959098a4da01612e874080c83930ba9cf6caa (diff)
downloadstrongswan-fd1a4d0a6bdc03968b9eb8b10d0af87685ffa536.tar.bz2
strongswan-fd1a4d0a6bdc03968b9eb8b10d0af87685ffa536.tar.xz
- code documentation cleaned
Diffstat (limited to 'Source/charon/configuration.h')
-rw-r--r--Source/charon/configuration.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/Source/charon/configuration.h b/Source/charon/configuration.h
index f3b483302..006eb3165 100644
--- a/Source/charon/configuration.h
+++ b/Source/charon/configuration.h
@@ -1,8 +1,10 @@
/**
* @file configuration.h
*
- * @brief Class configuration_t.
- * Object of this type represents a configuration for an IKE_SA
+ * @brief class configuration_t.
+ *
+ *
+ * Object of this type represents a configuration for an IKE_SA and its child_sa's
*
*/
@@ -35,19 +37,19 @@ typedef struct configuration_s configuration_t;
struct configuration_s {
/**
- * @brief Destroys a configuration_t object
+ * @brief destroys a configuration_t object
*
* @param this configuration_t object
- * @return SUCCESSFUL if succeeded, FAILED otherwise
+ * @return SUCCESS if succeeded, FAILED when NULL pointer given
*/
status_t (*destroy) (configuration_t *this);
};
/**
- * Creates an configuration_t-object
+ * creates an configuration_t object
*
* @return created configuration_t object
*/
-configuration_t * configuration_create();
+configuration_t *configuration_create();
#endif /*CONFIGURATION_H_*/