Skip to content
Snippets Groups Projects
Commit b6e0117e authored by Jan Kadlec's avatar Jan Kadlec
Browse files

Changed doxygen strings to reflect implementation. Refs: #110 #108

parent b64e5ea8
Branches
Tags
No related merge requests found
......@@ -56,9 +56,7 @@ dnslib_node_t *dnslib_node_new( dnslib_dname_t *owner, dnslib_node_t *parent );
* \param rrset RRSet to add.
*
* \retval 0 on success.
* \retval <> 0 on failure.
*
* \todo Specify return values according to implementation.
* \retval -2 if rrset can not be inserted.
*/
int dnslib_node_add_rrset( dnslib_node_t *node, dnslib_rrset_t *rrset );
......
......@@ -79,10 +79,9 @@ dnslib_rrset_t *dnslib_rrset_new( dnslib_dname_t *owner, uint16_t type,
* \param rdata RDATA to add to the RRSet.
*
* \retval 0 if successful.
* \retval <> 0 if an error occured.
* \retval -2 if either rrset or rdata was equal to NULL.
*
* \todo Provide some function for comparing RDATAs.
* \todo Add return values to the comment to reflect the implementation.
*/
int dnslib_rrset_add_rdata( dnslib_rrset_t *rrset, dnslib_rdata_t *rdata );
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment