diff options
author | Martin Willi <martin@strongswan.org> | 2009-09-04 13:46:09 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-09-04 13:46:09 +0200 |
commit | 7daf5226b74e14a6e0f1a888b0be26f3d246f9f8 (patch) | |
tree | 6436de2e84e7a677ecfb83db4bf44766cc273d9f /src/charon/encoding/payloads/cp_payload.h | |
parent | 7d1b0304467bc668b592ccd6680fd9615efbb5b2 (diff) | |
download | strongswan-7daf5226b74e14a6e0f1a888b0be26f3d246f9f8.tar.bz2 strongswan-7daf5226b74e14a6e0f1a888b0be26f3d246f9f8.tar.xz |
removed trailing spaces ([[:space:]]+$)
Diffstat (limited to 'src/charon/encoding/payloads/cp_payload.h')
-rw-r--r-- | src/charon/encoding/payloads/cp_payload.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/charon/encoding/payloads/cp_payload.h b/src/charon/encoding/payloads/cp_payload.h index 6ffcca708..11f5061b9 100644 --- a/src/charon/encoding/payloads/cp_payload.h +++ b/src/charon/encoding/payloads/cp_payload.h @@ -52,7 +52,7 @@ extern enum_name_t *config_type_names; /** * Class representing an IKEv2-CP Payload. - * + * * The CP Payload format is described in RFC section 3.15. */ struct cp_payload_t { @@ -60,41 +60,41 @@ struct cp_payload_t { * The payload_t interface. */ payload_t payload_interface; - + /** * Creates an iterator of stored configuration_attribute_t objects. - * + * * When deleting an attribute using this iterator, the length of this * configuration_attribute_t has to be refreshed by calling get_length()! * * @return created iterator_t object */ iterator_t *(*create_attribute_iterator) (cp_payload_t *this); - + /** * Adds a configuration_attribute_t object to this object. - * + * * The added configuration_attribute_t object is getting destroyed in * destroy function of cp_payload_t. * * @param attribute configuration_attribute_t object to add */ void (*add_configuration_attribute) (cp_payload_t *this, configuration_attribute_t *attribute); - + /** * Set the config type. * * @param config_type config_type_t to set */ void (*set_config_type) (cp_payload_t *this,config_type_t config_type); - + /** * Get the config type. * * @return config_type_t */ config_type_t (*get_config_type) (cp_payload_t *this); - + /** * Destroys an cp_payload_t object. */ @@ -103,7 +103,7 @@ struct cp_payload_t { /** * Creates an empty cp_payload_t object - * + * * @return cp_payload_t object */ cp_payload_t *cp_payload_create(void); |