ldns_rdf2str (3) Linux Manual Page
ldns_rr2str, ldns_pkt2str, ldns_rdf2str, ldns_rr_list2str, ldns_key2str
Synopsis
#include <stdint.h>#include <stdbool.h>
#include <ldns/ldns.h>
char* ldns_rr2str(const ldns_rr *rr);
char* ldns_pkt2str(const ldns_pkt *pkt);
char* ldns_rdf2str(const ldns_rdf *rdf);
char* ldns_rr_list2str(const ldns_rr_list *rr_list);
char* ldns_key2str(const ldns_key *k);
Description
- ldns_rr2str()
- Converts the data in the resource record to presentation format and returns that as a char *. Remember to free it.
.br rr: The rdata field to convert .br Returns null terminated char * data, or NULL on error
- ldns_pkt2str()
- Converts the data in the DNS packet to presentation format and returns that as a char *. Remember to free it.
.br pkt: The rdata field to convert .br Returns null terminated char * data, or NULL on error
- ldns_rdf2str()
- Converts the data in the rdata field to presentation format and returns that as a char *. Remember to free it.
.br rdf: The rdata field to convert .br Returns null terminated char * data, or NULL on error
- ldns_rr_list2str()
- Converts a list of resource records to presentation format and returns that as a char *. Remember to free it.
.br rr_list: the rr_list to convert to text .br Returns null terminated char * data, or NULL on error
- ldns_key2str()
- Converts a private key to the test presentation fmt and returns that as a char *. Remember to free it.
.br k: the key to convert to text .br Returns null terminated char * data, or NULL on error
Author
The ldns team at NLnet Labs. Which consists out of Jelte Jansen and Miek Gieben.Reporting Bugs
Please report bugs to ldns-team [at] nlnetlabs.nl or in our bugzilla at http://www.nlnetlabs.nl/bugs/index.htmlCopyright
Copyright (c) 2004 – 2006 NLnet Labs.Licensed under the BSD License. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
