summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2021-11-20 06:26:14 -0800
committerBob Halley <halley@dnspython.org>2021-11-20 06:26:14 -0800
commitd05666088b9a56a1a44d4bd68b20053bb37a97c6 (patch)
treedbb38ecac6179f2ff6e66cd6bdb80ad85d9b2288
parent10962b2f362dcab10727caceb16383e2032dddf3 (diff)
downloaddnspython-d05666088b9a56a1a44d4bd68b20053bb37a97c6.tar.gz
async https doco
-rw-r--r--doc/async-query.rst12
1 files changed, 10 insertions, 2 deletions
diff --git a/doc/async-query.rst b/doc/async-query.rst
index 7202bdf..dc22692 100644
--- a/doc/async-query.rst
+++ b/doc/async-query.rst
@@ -9,8 +9,10 @@ processing their responses. If you want "stub resolver" behavior, then
you should use the higher level ``dns.asyncresolver`` module; see
:ref:`async_resolver`.
-There is currently no support for DNS-over-HTTPS using asynchronous
-I/O but we hope to offer this in the future.
+For UDP and TCP, the module provides a single "do everything" query
+function, and also provides the send and receive halves of this function
+individually for situations where more sophisticated I/O handling is
+being used by the application.
UDP
---
@@ -32,6 +34,12 @@ TLS
.. autofunction:: dns.asyncquery.tls
+HTTPS
+-----
+
+.. autofunction:: dns.asyncquery.https
+
+
Zone Transfers
--------------