mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
Oh, Google updated their servers, and "body" is not required any more!
This commit is contained in:
parent
8de13842ae
commit
d58d5ffbf6
2 changed files with 2 additions and 1 deletions
|
@ -6,6 +6,8 @@
|
|||
- DNS options used to be cleared from DNS queries, with the exception
|
||||
of flags and payload sizes. This is not the case any more.
|
||||
- Android builds use a newer NDK, and add compatibility with API 19.
|
||||
- DoH queries are smaller, since workarounds are not required any more
|
||||
after Google updated their implementation.
|
||||
|
||||
* Version 2.0.16
|
||||
- On Unix-like systems, the server can run as an unprivileged user,
|
||||
|
|
|
@ -268,7 +268,6 @@ func (xTransport *XTransport) DoHQuery(useGet bool, url *url.URL, body []byte, t
|
|||
qs := url.Query()
|
||||
qs.Add("ct", "")
|
||||
encBody := base64.RawURLEncoding.EncodeToString(body)
|
||||
qs.Add("body", encBody)
|
||||
qs.Add("dns", encBody)
|
||||
if padding != nil {
|
||||
qs.Add("random_padding", *padding)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue