mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix #1173: differ local-zone type deny from unset tag_actions element.
git-svn-id: file:///svn/unbound/trunk@3945 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
b7a314a7dc
commit
3b96c4c9cd
2 changed files with 8 additions and 4 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
|
5 December 2016: Ralph
|
||||||
|
- Fix #1173: differ local-zone type deny from unset
|
||||||
|
tag_actions element.
|
||||||
|
|
||||||
5 December 2016: Wouter
|
5 December 2016: Wouter
|
||||||
- Fix #1170: document that 'inform' local-zone uses local-data.
|
- Fix #1170: document that 'inform' local-zone uses local-data.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -60,8 +60,8 @@ struct config_strlist;
|
||||||
* local-data directly.
|
* local-data directly.
|
||||||
*/
|
*/
|
||||||
enum localzone_type {
|
enum localzone_type {
|
||||||
/** drop query */
|
/** drop query. Start at 1 to differ from unset tag_actions element. */
|
||||||
local_zone_deny = 0,
|
local_zone_deny = 1,
|
||||||
/** answer with error */
|
/** answer with error */
|
||||||
local_zone_refuse,
|
local_zone_refuse,
|
||||||
/** answer nxdomain or nodata */
|
/** answer nxdomain or nodata */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue