Oh, Google updated their servers, and "body" is not required any more!

This commit is contained in:
Frank Denis 2018-10-03 18:33:10 +02:00
parent 8de13842ae
commit d58d5ffbf6
2 changed files with 2 additions and 1 deletions

View file

@ -6,6 +6,8 @@
- DNS options used to be cleared from DNS queries, with the exception - DNS options used to be cleared from DNS queries, with the exception
of flags and payload sizes. This is not the case any more. of flags and payload sizes. This is not the case any more.
- Android builds use a newer NDK, and add compatibility with API 19. - 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 * Version 2.0.16
- On Unix-like systems, the server can run as an unprivileged user, - On Unix-like systems, the server can run as an unprivileged user,

View file

@ -268,7 +268,6 @@ func (xTransport *XTransport) DoHQuery(useGet bool, url *url.URL, body []byte, t
qs := url.Query() qs := url.Query()
qs.Add("ct", "") qs.Add("ct", "")
encBody := base64.RawURLEncoding.EncodeToString(body) encBody := base64.RawURLEncoding.EncodeToString(body)
qs.Add("body", encBody)
qs.Add("dns", encBody) qs.Add("dns", encBody)
if padding != nil { if padding != nil {
qs.Add("random_padding", *padding) qs.Add("random_padding", *padding)