Home
last modified time | relevance | path

Searched refs:zonefile (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/unbound/services/
H A Dauthzone.h118 char* zonefile; member
616 int auth_zone_set_zonefile(struct auth_zone* z, char* zonefile);
H A Dauthzone.c432 free(z->zonefile); in auth_zone_delete()
586 auth_zone_set_zonefile(struct auth_zone* z, char* zonefile) in auth_zone_set_zonefile() argument
588 if(z->zonefile) free(z->zonefile); in auth_zone_set_zonefile()
589 if(zonefile == NULL) { in auth_zone_set_zonefile()
590 z->zonefile = NULL; in auth_zone_set_zonefile()
592 z->zonefile = strdup(zonefile); in auth_zone_set_zonefile()
593 if(!z->zonefile) { in auth_zone_set_zonefile()
1641 if(!z || !z->zonefile || z->zonefile[0]==0) in auth_zone_read_zonefile()
1644 zfilename = z->zonefile; in auth_zone_read_zonefile()
1874 if(z->zonefile && z->zonefile[0]!=0 && env) in auth_zones_read_zones()
[all …]
/freebsd/contrib/unbound/smallapp/
H A Dunbound-checkconf.c818 if(!p->zonefile || p->zonefile[0]==0) in check_file_clobber()
820 zfile = fname_after_chroot(p->zonefile, cfg, 1); in check_file_clobber()
845 p->name, p->zonefile, sourceopt); in check_file_clobber()
/freebsd/contrib/unbound/util/
H A Dconfig_file.h862 char* zonefile; member
H A Dconfiglexer.lex362 zonefile{COLON} { YDVAR(1, VAR_ZONEFILE) }
H A Dconfigparser.y3280 free(cfg_parser->cfg->auths->zonefile);
3281 cfg_parser->cfg->auths->zonefile = $2;
H A Dconfigparser.c6811 free(cfg_parser->cfg->auths->zonefile); in yyparse()
6812 cfg_parser->cfg->auths->zonefile = (yyvsp[0].str); in yyparse()
H A Dconfig_file.c1675 free(p->zonefile); in config_delauth()
/freebsd/contrib/unbound/doc/
H A Dunbound.conf.rst3910 Authority zones can be read from a zonefile.
3912 After update the zonefile is rewritten.
3943 :ref:`url<unbound.conf.auth.url>` to download the zonefile as a text file
3948 zonefile, because it may not have that when retrieving that data,
3958 Where to download a zonefile for the zone.
3979 zonefile, because it may not have that when retrieving that data, instead
4072 @@UAHL@unbound.conf.auth@zonefile@@: *<filename>*
4074 If not given then no zonefile is used.
5119 a trailing dot in the zonefile.
5176 :ref:`url<unbound.conf.rpz.url>` to download the zonefile as a text file
[all …]
H A Dexample.conf.in1268 # authoritatively. zonefile: reads from file (and writes to it if you also
1269 # download it), primary: fetches with AXFR and IXFR, or url to zonefile.
1299 # zonefile: "example.org.zone"
1458 # zonefile: "rpz.example.com"
H A Dunbound-control.rst655 Reload the auth zone (or RPZ zone) from zonefile.
656 The zonefile is read in overwriting the current contents of the zone in
H A DChangelog293 - Fix that for a zonefile only zone, if that file does not
422 url content, as in the zonefile read. Thanks to Qifan Zhang,
1147 zonefile is read.
4842 - Fix #140: Document slave not downloading new zonefile upon update.
5647 - Fix that empty zonefile means the zonefile is not set and not used.
6053 - unbound-control auth_zone_reload _zone_ option rereads the zonefile.
6191 - Fix #4091: Fix that reload of auth-zone does not merge the zonefile
6387 fallback-enabled: yes and masters or a zonefile with data.
/freebsd/contrib/ldns/
H A DChangelog271 * ldns-verify-zone accepts only one single zonefile as argument.
737 * Bugfix: allow for unknown resource records in zonefile with rdlen=0.
/freebsd/contrib/unbound/daemon/
H A Dremote.c5360 + getmem_str(s->zonefile) in getmem_config_auth()