Home
last modified time | relevance | path

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

/src/contrib/unbound/services/
H A Dauthzone.h118 char* zonefile; member
589 int auth_zone_set_zonefile(struct auth_zone* z, char* zonefile);
H A Dauthzone.c411 free(z->zonefile); in auth_zone_delete()
560 auth_zone_set_zonefile(struct auth_zone* z, char* zonefile) in auth_zone_set_zonefile() argument
562 if(z->zonefile) free(z->zonefile); in auth_zone_set_zonefile()
563 if(zonefile == NULL) { in auth_zone_set_zonefile()
564 z->zonefile = NULL; in auth_zone_set_zonefile()
566 z->zonefile = strdup(zonefile); in auth_zone_set_zonefile()
567 if(!z->zonefile) { in auth_zone_set_zonefile()
1573 if(!z || !z->zonefile || z->zonefile[0]==0) in auth_zone_read_zonefile()
1576 zfilename = z->zonefile; in auth_zone_read_zonefile()
1798 if(z->zonefile && z->zonefile[0]!=0 && env) in auth_zones_read_zones()
[all …]
/src/contrib/unbound/testcode/
H A Dunitzonemd.c117 "scheme=%d hashalgo=%d\n", zname, z->zonefile, in zonemd_generate_test()
/src/contrib/unbound/util/
H A Dconfig_file.h852 char* zonefile; member
H A Dconfiglexer.lex362 zonefile{COLON} { YDVAR(1, VAR_ZONEFILE) }
H A Dconfigparser.y3244 free(cfg_parser->cfg->auths->zonefile);
3245 cfg_parser->cfg->auths->zonefile = $2;
H A Dconfigparser.c6738 free(cfg_parser->cfg->auths->zonefile); in yyparse()
6739 cfg_parser->cfg->auths->zonefile = (yyvsp[0].str); in yyparse()
H A Dconfig_file.c1645 free(p->zonefile); in config_delauth()
/src/contrib/unbound/doc/
H A Dunbound.conf.rst3657 Authority zones can be read from zonefile.
3659 After update the zonefile is rewritten.
3690 :ref:`url<unbound.conf.auth.url>` to download the zonefile as a text file
3693 If you specify the hostname, you cannot use the domain from the zonefile,
3703 Where to download a zonefile for the zone.
3724 zonefile, because it may not have that when retrieving that data, instead
3817 @@UAHL@unbound.conf.auth@zonefile@@: *<filename>*
3819 If not given then no zonefile is used.
4779 a trailing dot in the zonefile.
4839 :ref:`url<unbound.conf.rpz.url>` to download the zonefile as a text file
[all …]
H A Dexample.conf.in1230 # authoritatively. zonefile: reads from file (and writes to it if you also
1231 # download it), primary: fetches with AXFR and IXFR, or url to zonefile.
1261 # zonefile: "example.org.zone"
1414 # zonefile: "rpz.example.com"
H A Dunbound-control.rst651 Reload the auth zone (or RPZ zone) from zonefile.
652 The zonefile is read in overwriting the current contents of the zone in
H A DChangelog56 zonefile is read.
3751 - Fix #140: Document slave not downloading new zonefile upon update.
4556 - Fix that empty zonefile means the zonefile is not set and not used.
4962 - unbound-control auth_zone_reload _zone_ option rereads the zonefile.
5100 - Fix #4091: Fix that reload of auth-zone does not merge the zonefile
5296 fallback-enabled: yes and masters or a zonefile with data.
/src/contrib/ldns/
H A DChangelog176 * ldns-verify-zone accepts only one single zonefile as argument.
642 * Bugfix: allow for unknown resource records in zonefile with rdlen=0.
/src/contrib/unbound/daemon/
H A Dremote.c5136 + getmem_str(s->zonefile) in getmem_config_auth()