]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
doxygen warnings fixed
authorJelte Jansen <jelte@NLnetLabs.nl>
Fri, 15 Feb 2008 12:04:57 +0000 (12:04 +0000)
committerJelte Jansen <jelte@NLnetLabs.nl>
Fri, 15 Feb 2008 12:04:57 +0000 (12:04 +0000)
ldns/dnssec.h
ldns/dnssec_sign.h
ldns/dnssec_verify.h

index c92f3fceafe0534a6f8df01691c3b3b82009d555..8c622e2643b93b0c5bc0ef26a51760534067420f 100644 (file)
 /**
  * Returns the first RRSIG rr that corresponds to the rrset 
  * with the given name and type
- * TODO: may be more, use all sigs...
+ * 
  * \param[in] name The dname of the RRset covered by the RRSIG to find
  * \param[in] type The type of the RRset covered by the RRSIG to find
+ * \param[in] rrs List of rrs to search in
  * \returns Pointer to the first RRsig ldns_rr found, or NULL if it is
  * not present
  */
index 72f5d72e4248dffbc89df221d0c51af3939f9325..ed4d577deaf3cbe063a75c74da71c61b6c43f25c 100644 (file)
@@ -30,6 +30,8 @@ ldns_rdf *ldns_sign_public_dsa(ldns_buffer *to_sign, DSA *key);
  * \param[in] to_sign The ldns_buffer containing raw data that is
  *                    to be signed
  * \param[in] key The EVP_PKEY key structure to sign with
+ * \param[in] digest_type The digest algorithm to use in the creation of
+ *                        the signature
  * \return ldns_rdf for the RRSIG ldns_rr
  */
 ldns_rdf *ldns_sign_public_evp(ldns_buffer *to_sign,
@@ -57,7 +59,7 @@ ldns_rdf *ldns_sign_public_rsamd5(ldns_buffer *to_sign, RSA *key);
  * Adds NSEC records to the given dnssec_zone
  *
  * \param[in] zone the zone to add the records to
- * \param[in] new ldns_rr's created by this function are
+ * \param[in] new_rrs ldns_rr's created by this function are
  *            added to this rr list, so the caller can free them later
  * \return LDNS_STATUS_OK on success, an error code otherwise
  */
@@ -73,6 +75,9 @@ ldns_dnssec_zone_create_nsecs(ldns_dnssec_zone *zone,
  *            callback
  * \param[in] key_list these are marked to be used or not,
  *            on the return value of the callback
+ * \param[in] func this function is called to specify what to
+ *            do with each signature (and corresponding key)
+ * \param[in] arg Optional argument for the callback function
  * \returns pointer to the new signatures rrs (the original
  *          passed to this function may have been removed)
  */
@@ -86,7 +91,7 @@ ldns_dnssec_remove_signatures(ldns_dnssec_rrs *signatures,
  * Adds signatures to the zone
  *
  * \param[in] zone the zone to add RRSIG Resource Records to
- * \param[in] new_rss The RRSIG RRs that are created are also
+ * \param[in] new_rrs the RRSIG RRs that are created are also
  *            added to this list, so the caller can free them
  *            later
  * \param[in] key_list list of keys to sign with.
index 2cf523883dd839c43899a44042516acfee1a7f95..e6e8f51b9e7d70cc772cf79fedda829bec03517f 100644 (file)
@@ -119,7 +119,7 @@ void ldns_dnssec_trust_tree_free(ldns_dnssec_trust_tree *tree);
 /**
  * returns the depth of the trust tree
  *
- * \param[in] The tree to calculate the depth of
+ * \param[in] tree tree to calculate the depth of
  * \return The depth of the tree
  */
 size_t ldns_dnssec_trust_tree_depth(ldns_dnssec_trust_tree *tree);