logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

ldns_dname_cat_clone, ldns_dname_cat - concatenate two dnames

Author

       The ldns team at NLnet Labs.

Description

ldns_dname_cat_clone() concatenates two dnames together
              rd1: the leftside
              rd2: the rightside
              Returns a new rdf with leftside/rightside

       ldns_dname_cat() concatenates rd2 after rd1 (rd2 is copied, rd1 is modified)
              rd1: the leftside
              rd2: the rightside
              Returns LDNS_STATUS_OK on success

Name

       ldns_dname_cat_clone, ldns_dname_cat - concatenate two dnames

Remarks

       This manpage was automatically generated from the ldns source code.

                                                   30 May 2006                                           ldns(3)

Reporting Bugs

       Please report bugs to dns-team@nlnetlabs.nl or on GitHub at https://github.com/NLnetLabs/ldns/issues

See Also

perldocNet::DNS, RFC1034, RFC1035, RFC4033, RFC4034 and RFC4035.

Synopsis

       #include <stdint.h>
       #include <stdbool.h>

       #include <ldns/ldns.h>

       ldns_rdf* ldns_dname_cat_clone(const ldns_rdf *rd1, const ldns_rdf *rd2);

       ldns_status ldns_dname_cat(ldns_rdf *rd1, const ldns_rdf *rd2);

See Also