diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lib.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/lib.txt b/doc/lib.txt index ca2539631..62efe6a5d 100644 --- a/doc/lib.txt +++ b/doc/lib.txt @@ -223,6 +223,34 @@ Internet Protocols and Support * `uri <uri.html>`_ This module provides functions for working with URIs. +* `asyncdispatch <asyncdispatch.html>`_ + This module implements an asynchronous dispatcher for IO operations. + + **Note:** This module is still largely experimental. + +* `asyncnet <asyncnet.html>`_ + This module implements asynchronous sockets based on the ``asyncdispatch`` + module. + + **Note:** This module is still largely experimental. + +* `asynchttpserver <asynchttpserver.html>`_ + This module implements an asynchronous HTTP server using the ``asyncnet`` + module. + + **Note:** This module is still largely experimental. + +* `net <net.html>`_ + This module implements a high-level sockets API. It will replace the + ``sockets`` module in the future. + +* `rawsockets <rawsockets.html>`_ + This module implements a low-level sockets API. + +* `selectors <selectors.html>`_ + This module implements a selector API with backends specific to each OS. + Currently epoll on Linux and select on other operating systems. + Parsers ------- |