Searched refs:zonefile (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/unbound/services/
H A Dauthzone.h120 /** zonefile name (or NULL for no zonefile) */
121 char* zonefile; member in struct:auth_zone
270 * from zonefile it is also set (with probe set soon to check) */
460 * packets. also for an AXFR. For HTTP a zonefile chunk. */
502 * Write auth zone data to file, in zonefile format.
570 /** set auth zone zonefile string. caller must have lock on zone */
571 int auth_zone_set_zonefile(struct auth_zone* z, char* zonefile);
622 /** read auth zone from zonefile. caller must lock zone. false on failure */
H A Dauthzone.c406 free(z->zonefile);
555 auth_zone_set_zonefile(struct auth_zone* z, char* zonefile) argument
557 if(z->zonefile) free(z->zonefile);
558 if(zonefile == NULL) {
559 z->zonefile = NULL;
561 z->zonefile = strdup(zonefile);
562 if(!z->zonefile) {
1455 * Parse zonefile
[all...]
/freebsd-11-stable/contrib/unbound/util/
H A Dconfig_file.h349 /** files with trusted DS and DNSKEYs in zonefile format, list */
706 /** zonefile (or NULL) */
707 char* zonefile; member in struct:config_auth
H A Dconfigparser.y2717 OUTYY(("P(zonefile:%s)\n", $2));
2718 free(cfg_parser->cfg->auths->zonefile);
2719 cfg_parser->cfg->auths->zonefile = $2;
H A Dconfig_file.c1393 free(p->zonefile);

Completed in 172 milliseconds