diff options
Diffstat (limited to 'src/charon/sa/tasks/ike_me.h')
-rw-r--r-- | src/charon/sa/tasks/ike_me.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/charon/sa/tasks/ike_me.h b/src/charon/sa/tasks/ike_me.h index 4b35c313c..43ba655c7 100644 --- a/src/charon/sa/tasks/ike_me.h +++ b/src/charon/sa/tasks/ike_me.h @@ -34,7 +34,7 @@ typedef struct ike_me_t ike_me_t; * connection, allows to initiate mediated connections using ME_CONNECT * exchanges and to request reflexive addresses from the mediation server using * ME_ENDPOINT notifies. - * + * * @note This task has to be activated before the IKE_AUTH task, because that * task generates the IKE_SA_INIT message so that no more payloads can be added * to it afterwards. @@ -45,7 +45,7 @@ struct ike_me_t { * Implements the task_t interface */ task_t task; - + /** * Initiates a connection with another peer (i.e. sends a ME_CONNECT * to the mediation server) @@ -53,28 +53,28 @@ struct ike_me_t { * @param peer_id ID of the other peer (gets cloned) */ void (*connect)(ike_me_t *this, identification_t *peer_id); - + /** * Responds to a ME_CONNECT from another peer (i.e. sends a ME_CONNECT * to the mediation server) - * + * * @param peer_id ID of the other peer (gets cloned) * @param connect_id the connect ID as provided by the initiator (gets cloned) */ void (*respond)(ike_me_t *this, identification_t *peer_id, chunk_t connect_id); - + /** * Sends a ME_CALLBACK to a peer that previously requested another peer. - * + * * @param peer_id ID of the other peer (gets cloned) */ void (*callback)(ike_me_t *this, identification_t *peer_id); - + /** * Relays data to another peer (i.e. sends a ME_CONNECT to the peer) - * + * * Data gets cloned. - * + * * @param requester ID of the requesting peer * @param connect_id content of the ME_CONNECTID notify * @param connect_key content of the ME_CONNECTKEY notify |