forked from AdguardTeam/dnsproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull request: all: upd go, simplify code
Merge in DNS/dnsproxy from upd to master Squashed commit of the following: commit 5495078 Author: Ainar Garipov <[email protected]> Date: Thu Dec 23 14:38:06 2021 +0300 upstream: imp code commit 0ddc631 Author: Ainar Garipov <[email protected]> Date: Wed Dec 22 21:08:13 2021 +0300 all: upd more commit cf987ed Author: Ainar Garipov <[email protected]> Date: Wed Dec 22 20:50:01 2021 +0300 proxy: fmt commit 31821af Author: Ainar Garipov <[email protected]> Date: Wed Dec 22 20:47:44 2021 +0300 all: upd go, simplify code
- Loading branch information
Showing
662 changed files
with
66,617 additions
and
30,291 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,41 @@ | ||
module github.com/AdguardTeam/dnsproxy | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/AdguardTeam/golibs v0.10.3 | ||
github.com/ameshkov/dnscrypt/v2 v2.2.2 | ||
github.com/ameshkov/dnscrypt/v2 v2.2.3 | ||
github.com/ameshkov/dnsstamps v1.0.3 | ||
github.com/beefsack/go-rate v0.0.0-20200827232406-6cde80facd47 | ||
github.com/go-test/deep v1.0.5 | ||
github.com/jessevdk/go-flags v1.4.0 | ||
github.com/joomcode/errorx v1.0.3 | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/lucas-clemente/quic-go v0.21.1 | ||
github.com/miekg/dns v1.1.40 | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/jessevdk/go-flags v1.5.0 | ||
github.com/lucas-clemente/quic-go v0.24.0 | ||
github.com/miekg/dns v1.1.44 | ||
github.com/patrickmn/go-cache v2.1.0+incompatible | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/crypto v0.0.0-20201208171446-5f87f3452ae9 // indirect | ||
golang.org/x/net v0.0.0-20210929193557-e81a3d93ecf6 | ||
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | ||
) | ||
|
||
require ( | ||
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect | ||
github.com/aead/poly1305 v0.0.0-20180717145839-3fee0db0b635 // indirect | ||
github.com/cheekybits/genny v1.0.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/marten-seemann/qtls-go1-16 v0.1.4 // indirect | ||
github.com/marten-seemann/qtls-go1-17 v0.1.0 // indirect | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/nxadm/tail v1.4.8 // indirect | ||
github.com/onsi/ginkgo v1.16.5 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect | ||
golang.org/x/mod v0.5.1 // indirect | ||
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/tools v0.1.8 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
//go:build !plan9 | ||
// +build !plan9 | ||
|
||
package proxy | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.