]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
Doxygen fixes
authorMartin Willi <martin@revosec.ch>
Mon, 19 Dec 2011 09:27:40 +0000 (10:27 +0100)
committerMartin Willi <martin@revosec.ch>
Tue, 20 Mar 2012 16:31:25 +0000 (17:31 +0100)
src/libcharon/encoding/payloads/cert_payload.h
src/libcharon/encoding/payloads/certreq_payload.h
src/libcharon/encoding/payloads/id_payload.h
src/libcharon/encoding/payloads/notify_payload.h
src/libcharon/sa/authenticators/pubkey_v1_authenticator.h
src/libcharon/sa/tasks/informational.h
src/libcharon/sa/tasks/main_mode.h
src/libcharon/sa/tasks/quick_mode.h

index d85a463ca44a3a87812c322ab4c693b19723e7f8..19ed2ccd243a45f02a85dc5891f4c5c20d47e4bd 100644 (file)
@@ -96,7 +96,6 @@ struct cert_payload_t {
         */
        char *(*get_url)(cert_payload_t *this);
 
-
        /**
         * Destroys the cert_payload object.
         */
@@ -107,7 +106,6 @@ struct cert_payload_t {
  * Creates an empty certificate payload.
  *
  * @param type                         payload type (for IKEv1 or IKEv2)
- * @param cert                         certificate to embed
  * @return                                     cert_payload_t object
  */
 cert_payload_t *cert_payload_create(payload_type_t type);
@@ -126,6 +124,7 @@ cert_payload_t *cert_payload_create_from_cert(payload_type_t type,
  * Creates an IKEv2 certificate payload with hash and URL encoding.
  *
  * @param hash                         hash of the DER encoded certificate (get's cloned)
+ * @param url                          URL to the certificate
  * @return                                     cert_payload_t object
  */
 cert_payload_t *cert_payload_create_from_hash_and_url(chunk_t hash, char *url);
index e234df5beef4b191e775ef9e761f75cef0751540..cce71c0ad62e3219d3448fc931973ee64d61486c 100644 (file)
@@ -92,7 +92,7 @@ certreq_payload_t *certreq_payload_create_type(certificate_type_t type);
 /**
  * Creates a IKEv1 certreq_payload_t for a given distinguished name.
  *
- * @param dn                   distinguished name, does not get owned
+ * @param id                   distinguished name, does not get owned
  * @return                             certreq payload
  */
 certreq_payload_t *certreq_payload_create_dn(identification_t *id);
index 94ed1cb38ea84c57e28701248ac3889061816dc2..9a62494292b800f8106fd6f1fe803d84287d1a62 100644 (file)
@@ -73,7 +73,7 @@ struct id_payload_t {
  * @param type         one of ID_INITIATOR, ID_RESPONDER, ID_V1 and NAT_OA_V1
  * @return                     id_payload_t object
  */
-id_payload_t *id_payload_create(payload_type_t payload_type);
+id_payload_t *id_payload_create(payload_type_t type);
 
 /**
  * Creates an id_payload_t from an existing identification_t object.
index 214a6b795fca90196630afa1ce6714f37514dfd0..c6d09daa78f611763d3e5c1ff564c527478b3f3d 100644 (file)
@@ -272,7 +272,7 @@ notify_payload_t *notify_payload_create(payload_type_t type);
  *
  * @param type                                 payload type, NOTIFY or NOTIFY_V1
  * @param protocol                             protocol id (IKE, AH or ESP)
- * @param type                                 notify type (see notify_type_t)
+ * @param notify                               type of notify
  * @return                                             notify_payload_t object
  */
 notify_payload_t *notify_payload_create_from_protocol_and_type(
index 48968d6a13917786c6f4250952ef73f79be8d2fe..e71a81f18ea51950006331cfb194e35b3c0945be 100644 (file)
@@ -40,6 +40,7 @@ struct pubkey_v1_authenticator_t {
  * Create an authenticator to build and verify public key signatures.
  *
  * @param ike_sa                       associated IKE_SA
+ * @param initiator                    TRUE if we are IKE_SA initiator
  * @param dh                           diffie hellman key exchange
  * @param dh_value                     others public diffie hellman value
  * @param sa_payload           generated SA payload data, without payload header
index e9c32f64706c642fe6bc6823c4c4c3f585c5ac90..2aec7abd8d493a45bec65b756e50de2bee5eb59d 100644 (file)
@@ -42,6 +42,7 @@ struct informational_t {
 /**
  * Create a new informational task.
  *
+ * @param ike_sa               IKE_SA this task works for
  * @param notify               notify to send as initiator, NULL if responder
  * @return                             task to handle by the task_manager
  */
index d6250118072530116cf501a1b8f136ceede656d0..9ff253096e4c2438d0ed16fe22fa2f8eed695e83 100644 (file)
@@ -41,6 +41,7 @@ struct main_mode_t {
 /**
  * Create a new main_mode task.
  *
+ * @param ike_sa               IKE_SA this task works for
  * @param initiator            TRUE if task initiated locally
  * @return                             task to handle by the task_manager
  */
index 358296c2e30673cc9ab2a8f26b25442605f7b7c6..e50c1a97ee60aaff69f22163b0787299e95b5500 100644 (file)
@@ -41,6 +41,7 @@ struct quick_mode_t {
 /**
  * Create a new quick_mode task.
  *
+ * @param ike_sa               IKE_SA this task works for
  * @param config               child_cfg if task initiator, NULL if responder
  * @param tsi                  source of triggering packet, or NULL
  * @param tsr                  destination of triggering packet, or NULL