summaryrefslogtreecommitdiff
path: root/dns/query.py
Commit message (Expand)AuthorAgeFilesLines
* Moved "connected" to better spotPaul Hoffman2021-10-131-2/+2
* Removed the "connected" from UDP sockets (thank you Brian!)Paul Hoffman2021-10-131-2/+2
* Added "connected" to references to socket.socket.Paul Hoffman2021-10-131-4/+4
* Eliminate the need for a serial parameter to inbound_xfr()Bob Halley2021-05-181-1/+3
* Added serial to inbound_xfr argumentsHidde van der Heide2021-05-181-1/+1
* is_udp is better as Inbound attribute not parameter to process_message(). In...Bob Halley2020-08-221-2/+3
* remove parameters that are no longer used in inbound_xfr()Bob Halley2020-08-221-11/+1
* Implement new inbound xfr design.xfrBob Halley2020-08-211-10/+127
* pylint lintingBob Halley2020-07-311-17/+17
* lintBob Halley2020-07-191-1/+1
* Disable coverage for BlockingIOError on udp send.Brian Wellington2020-07-171-1/+1
* Changes to blocking model.Brian Wellington2020-07-171-27/+40
* Use the selectors module.Brian Wellington2020-07-171-71/+26
* Add support for receiving UDP queries.Brian Wellington2020-07-081-12/+32
* Fix return type docs for receive methods.Brian Wellington2020-07-081-2/+4
* Remove the concept from "first" from TSIG.Brian Wellington2020-06-301-4/+1
* Use serial number arithmetic in IXFR.Bob Halley2020-06-271-1/+2
* improve query coverageBob Halley2020-06-181-10/+10
* The dns.inet.AF_* portability scheme is no longer needed.Bob Halley2020-06-161-4/+4
* avoid unneeded coverage warningsBob Halley2020-06-161-2/+2
* lintBob Halley2020-06-161-1/+1
* simplify DoH POSTBob Halley2020-06-161-2/+1
* simplify DoH GETBob Halley2020-06-161-4/+4
* Fix the DoH v6 literal fix.Bob Halley2020-06-161-11/+14
* lintBob Halley2020-06-161-1/+0
* Overhaul _destination_and_source.Bob Halley2020-06-161-32/+45
* Use the proper URL syntax for IPv6 address literals.Bob Halley2020-06-161-10/+10
* minor doco updateBob Halley2020-06-061-5/+7
* Minor Python 3 cleanups.Brian Wellington2020-06-031-3/+3
* continued line lintBob Halley2020-06-011-1/+1
* Adds sock parameters to query methods.Brian Wellington2020-06-011-42/+93
* revision of truncation handlingBob Halley2020-05-221-4/+57
* remove historical af argument to query functionsBob Halley2020-05-211-35/+10
* Remove dns.rdata{type,class}.to_enum.Brian Wellington2020-05-211-1/+1
* lint: remove unused sys importBob Halley2020-05-211-1/+0
* Use context managers in the query methods.Brian Wellington2020-05-201-56/+33
* Simplify dns.query._connect().Brian Wellington2020-05-201-13/+6
* Start converting rdatatype/rdataclass to enum.Brian Wellington2020-05-181-2/+1
* flake8 lintingBob Halley2020-05-151-6/+10
* Fix documentation cut and paste error.Brian Wellington2020-05-111-2/+2
* in doco, text->str, binary->bytesBob Halley2020-05-081-18/+18
* remove send_https() as the send/receive split is too hard for HTTPS and it is...Bob Halley2020-05-081-17/+1
* Do not lose scope info. [Issue #283]Bob Halley2020-05-041-2/+5
* more things to make mypy happierBob Halley2020-05-031-1/+1
* Use context managers to simplify code.Brian Wellington2020-05-011-9/+4
* Merge pull request #460 from bwelling/remove-futureBob Halley2020-05-011-2/+0
|\
| * Remove "from __future__ import" statements.Brian Wellington2020-05-011-2/+0
* | make DOH an extra feature (to avoid requests as hard dependency)Daniel Lenski2020-04-301-3/+18
|/
* prevent fd from leaking (fix #351)kimbo2020-02-261-101/+98
* DoH cleanup.Brian Wellington2020-01-071-36/+68