+ client: Add REFUSED DNS error code as the default blocking method

This commit is contained in:
ArtemBaskal 2020-09-07 12:38:35 +03:00
parent b6193c32ce
commit 12ed67ab11
2 changed files with 2 additions and 0 deletions

View File

@ -235,6 +235,7 @@
"blocking_mode": "Blocking mode",
"default": "Default",
"nxdomain": "NXDOMAIN",
"refused": "REFUSED",
"null_ip": "Null IP",
"custom_ip": "Custom IP",
"blocking_ipv4": "Blocking IPv4",

View File

@ -294,6 +294,7 @@ export const FILTERS_INTERVALS_HOURS = [0, 1, 12, 24, 72, 168];
export const BLOCKING_MODES = {
default: 'default',
refused: 'refused',
nxdomain: 'nxdomain',
null_ip: 'null_ip',
custom_ip: 'custom_ip',