summaryrefslogtreecommitdiff
path: root/dns/_asyncio_backend.py
Commit message (Collapse)AuthorAgeFilesLines
* Add support for receiving UDP queries.Brian Wellington2020-07-081-0/+6
| | | | | | | | | | | | | | The existing receive_udp() methods are only usable for receiving responses, as they require an expected destination and check that the message is from that destination. This change makes the expected destination (and hence the check) optional, and returns the address that the message was received from (in the sync case, this is only done if no destination is provided, for backwards compatibility). New tests are added, which required adding generic getsockname() support to the async backends.
* more coverage improvementsBob Halley2020-06-191-3/+3
|
* improve async coverageBob Halley2020-06-191-2/+3
|
* fix recvfrom, tls timing, and other misc thingsBob Halley2020-06-121-1/+2
|
* Add TLS for asyncio.Bob Halley2020-06-121-2/+4
|
* Attempt to cope with python 3.6 asyncio.Bob Halley2020-06-111-3/+15
|
* Support trio, curio, and asyncio with one API!Bob Halley2020-06-111-0/+118