LDNS_AXFR_NEXT(3) - Linux man page online | Library functions
Functions for full.
Chapter
30 May 2006
ldns(3) Library Functions Manual ldns(3)
@nlnetlabs.nl or in our bugzilla at http://www.nlnet‐
labs.nl/bugs/index.html
30 May 2006 ldns(3)
NAME
ldns_axfr_start, ldns_axfr_next, ldns_axfr_abort, ldns_axfr_complete, ldns_axfr_last_pkt - functions for full zone transferSYNOPSIS
#include <stdint.h> #include <stdbool.h> #include <ldns/ldns.h> ldns_status ldns_axfr_start(ldns_resolver *resolver, const ldns_rdf *domain, ldns_rr_class c); ldns_rr* ldns_axfr_next(ldns_resolver *resolver); void ldns_axfr_abort(ldns_resolver *resolver); bool ldns_axfr_complete(const ldns_resolver *resolver); ldns_pkt* ldns_axfr_last_pkt(const ldns_resolver *res);DESCRIPTION
ldns_axfr_start() Prepares the resolver for an axfr query The query is sent and the answers can be read with ldns_axfr_next resolver: the resolver to use domain: the domain to exfr c: the class to use Returns ldns_status the status of the transfer ldns_axfr_next() Get the next stream of RRs in a AXFR resolver: the resolver to use. First ldns_axfr_start() must be called Returns ldns_rr the next RR from the AXFR stream After you get this returned RR (not NULL: on error), then check if ldns_axfr_complete() is true to see if the zone transfer has completed. ldns_axfr_abort() Abort a transfer that is in progress resolver: the resolver that is used ldns_axfr_complete() Returns true if the axfr transfer has completed (i.e. 2 SOA RRs and no errors were encountered resolver: the resolver that is used Returns bool true if axfr transfer was completed without error ldns_axfr_last_pkt() Returns a pointer to the last ldns_pkt that was sent by the server in the AXFR transfer uasable for instance to get the error code on failure res: the resolver that was used in the axfr transfer Returns ldns_pkt the last packet sentAUTHOR
The ldns team at NLnet Labs. Which consists out of Jelte Jansen and Miek Gieben.REPORTING BUGS
Please report bugs to