+ client: 2241 Add DNS-over-QUIC string

Close #2241

* commit '3d19f91bede4aee8ee44a4b0a31c4c7b91405785':
  + client: 2241 Add DNS-over-QUIC string
This commit is contained in:
Artem Baskal 2020-11-03 18:05:14 +03:00
commit 62cc334f46
4 changed files with 5 additions and 2 deletions

View File

@ -1587,7 +1587,7 @@ Response:
"upstream":"...", // Upstream URL starting with tcp://, tls://, https://, or with an IP address "upstream":"...", // Upstream URL starting with tcp://, tls://, https://, or with an IP address
"answer_dnssec": true, "answer_dnssec": true,
"client":"127.0.0.1", "client":"127.0.0.1",
"client_proto": "" (plain) | "doh" | "dot", "client_proto": "" (plain) | "doh" | "dot" | "doq",
"elapsedMs":"0.098403", "elapsedMs":"0.098403",
"filterId":1, "filterId":1,
"question":{ "question":{

View File

@ -249,6 +249,7 @@
"blocking_ipv6": "Blocking IPv6", "blocking_ipv6": "Blocking IPv6",
"dns_over_https": "DNS-over-HTTPS", "dns_over_https": "DNS-over-HTTPS",
"dns_over_tls": "DNS-over-TLS", "dns_over_tls": "DNS-over-TLS",
"dns_over_quic": "DNS-over-QUIC",
"download_mobileconfig_doh": "Download .mobileconfig for DNS-over-HTTPS", "download_mobileconfig_doh": "Download .mobileconfig for DNS-over-HTTPS",
"download_mobileconfig_dot": "Download .mobileconfig for DNS-over-TLS", "download_mobileconfig_dot": "Download .mobileconfig for DNS-over-TLS",
"plain_dns": "Plain DNS", "plain_dns": "Plain DNS",

View File

@ -475,6 +475,7 @@ export const BLOCK_ACTIONS = {
export const SCHEME_TO_PROTOCOL_MAP = { export const SCHEME_TO_PROTOCOL_MAP = {
doh: 'dns_over_https', doh: 'dns_over_https',
dot: 'dns_over_tls', dot: 'dns_over_tls',
doq: 'dns_over_quic',
'': 'plain_dns', '': 'plain_dns',
}; };

View File

@ -1499,6 +1499,7 @@ components:
enum: enum:
- dot - dot
- doh - doh
- doq
- "" - ""
elapsedMs: elapsedMs:
type: string type: string