-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for DNS over QUIC (DoQ) protocol (#118)
* Add DNS over QUIC (DoQ) support * Improve custom destination port logic * Fixed a bug in which if you uses `-p` argument (to specify destination part) _after_ choosing protocol (e.g. `-T` or `-X`), custom destination port was ignored and we used default instead. * Improved warning and error message * Update dependencies * Remove support for python 3.8 * Bail if service does not respond to DoH
- Loading branch information
Showing
6 changed files
with
95 additions
and
27 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
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,5 +1,6 @@ | ||
dnspython>=2.6.1 | ||
cymruwhois>=1.6 | ||
httpx>=0.27.0 | ||
aioquic>=1.2.0 | ||
cryptography>=42.0.7 | ||
cymruwhois>=1.6 | ||
dnspython>=2.7.0 | ||
h2>=4.1.0 | ||
httpx>=0.27.0 |
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