diff options
author | Martin Willi <martin@strongswan.org> | 2005-12-06 13:44:22 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-12-06 13:44:22 +0000 |
commit | c3dc864eaa5cebae57be1b0e9339f2e7ebdbfe15 (patch) | |
tree | 2baf1492686585fa1cd4dc1aa12dded74b4a85d9 /Source/charon/encoding/payloads/ts_payload.h | |
parent | 59de50868b77f48ab78a31d4ad684e4e59d2e81f (diff) | |
download | strongswan-c3dc864eaa5cebae57be1b0e9339f2e7ebdbfe15.tar.bz2 strongswan-c3dc864eaa5cebae57be1b0e9339f2e7ebdbfe15.tar.xz |
- code cleanup of encoding package
Diffstat (limited to 'Source/charon/encoding/payloads/ts_payload.h')
-rw-r--r-- | Source/charon/encoding/payloads/ts_payload.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Source/charon/encoding/payloads/ts_payload.h b/Source/charon/encoding/payloads/ts_payload.h index 158196a6c..1b18d3646 100644 --- a/Source/charon/encoding/payloads/ts_payload.h +++ b/Source/charon/encoding/payloads/ts_payload.h @@ -41,12 +41,15 @@ typedef struct ts_payload_t ts_payload_t; /** - * Object representing an IKEv2 TS payload. + * @brief Class representing an IKEv2 TS payload. * * The TS payload format is described in draft section 3.13. * - * @ingroup payloads + * @b Constructors: + * - ts_payload_create() + * - ts_payload_create_from_traffic_selectors() * + * @ingroup payloads */ struct ts_payload_t { /** @@ -61,7 +64,6 @@ struct ts_payload_t { * @return * - TRUE if this payload is of type TSi * - FALSE if this payload is of type TSr - * */ bool (*get_initiator) (ts_payload_t *this); @@ -72,7 +74,6 @@ struct ts_payload_t { * @param is_initiator * - TRUE if this payload is of type TSi * - FALSE if this payload is of type TSr - * */ void (*set_initiator) (ts_payload_t *this,bool is_initiator); @@ -129,8 +130,7 @@ struct ts_payload_t { * @param is_initiator * - TRUE if this payload is of type TSi * - FALSE if this payload is of type TSr - * - * @return created ts_payload_t object + * @return ts_payload_t object * * @ingroup payloads */ @@ -143,8 +143,7 @@ ts_payload_t *ts_payload_create(bool is_initiator); * @param is_initiator * - TRUE if this payload is of type TSi * - FALSE if this payload is of type TSr - * - * @return created ts_payload_t object + * @return ts_payload_t object * * @ingroup payloads */ |