]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
doxygen fixlets
authorJelte Jansen <jelte@NLnetLabs.nl>
Mon, 9 Feb 2009 21:04:44 +0000 (21:04 +0000)
committerJelte Jansen <jelte@NLnetLabs.nl>
Mon, 9 Feb 2009 21:04:44 +0000 (21:04 +0000)
ldns/dnssec_sign.h
ldns/keys.h
ldns/util.h.in

index 6c0c7737728d40a01f0b43388c0174b70cdcafe3..a4a63c0604f13d1a887497330dfde7d79445d753 100644 (file)
@@ -10,7 +10,7 @@
 /**
  * Create an empty RRSIG RR (i.e. without the actual signature data)
  * \param[in] rrset The RRset to create the signature for
- * \param[in] current_key The key that will create the signature
+ * \param[in] key The key that will create the signature
  * \return signature rr
  */
 ldns_rr *
index 67abc941f77ee010ce9d81127c0f078fa206befa..c2c833ee3f55ad9001dec95b0cab5dabd7da8f0b 100644 (file)
@@ -320,12 +320,13 @@ void ldns_key_set_hmac_size(ldns_key *k, size_t hmac_size);
  * Set the key id data. This is used if the key points to
  * some externally stored key data
  * 
- * The data at the pointer is not copied, and must be freed
- * manually; ldns_key_deep_free() does *not* free this data
- * \param[in] k the key
- * \param[in] hmac key id data
+ * Only the pointer is set, the data there is not copied,
+ * and must be freed manually; ldns_key_deep_free() does 
+ * *not* free this data
+ * \param[in] key the key
+ * \param[in] external_key key id data
  */
-void ldns_key_set_external_key(ldns_key *k, void *external_key);
+void ldns_key_set_external_key(ldns_key *key, void *external_key);
 
 /**
  * Set the key's hmac size
@@ -558,7 +559,7 @@ ldns_rr * ldns_read_anchor_file(const char *filename);
 
 /**
  * Returns the 'default base name' for key files;
- * IE. K<zone>+<alg>+<keytag>
+ * IE. K\<zone\>+\<alg\>+\<keytag\>
  * (without the .key or .private)
  * The memory for this is allocated by this function,
  * and should be freed by the caller
index 35ab7485a53f6989ce0fde4a872decda36fb20ff..a09b8610b9eadf3df0c75086c9b7773999611b7c 100644 (file)
@@ -282,8 +282,8 @@ int ldns_init_random(FILE *fd, unsigned int size);
 /**
  * Encode data as BubbleBabble
  *
- * \param[in] a pointer to data to be encoded
- * \param[in] size the number of bytes of data
+ * \param[in] data a pointer to data to be encoded
+ * \param[in] len size the number of bytes of data
  * \return a string of BubbleBabble
  */
 char *ldns_bubblebabble(uint8_t *data, size_t len);