summaryrefslogtreecommitdiff
path: root/slixmpp/xmlstream/resolver.py
AgeCommit message (Collapse)Author
2021-06-28refactor: type the resolvermathieui
almost perfect, except for python < 3.9 making it so we can’t have nice things.
2021-02-05global: rewrite copyright notice to use commentsmathieui
2018-07-02Fix missing async def in function.Emmanuel Gil Peyrot
2018-07-01Switch from @asyncio.coroutine to async def everywhere.Emmanuel Gil Peyrot
2018-01-10Fix typos, thanks `codespell`!Emmanuel Gil Peyrot
2015-09-24Fix IPv6 resolving with aiodns 1.0mathieui
2015-09-14Bump the requirements to aiodns 1.0mathieui
(and use install_requires instead of requires in the setup.py)
2015-05-12Allow the use of a custom loop instead of asyncio.get_event_loop()mathieui
2015-02-24Fix dns resolution without aiodnsmathieui
(use loop.getaddrinfo instead of the blocking version)
2015-01-03Delay the handling of stanza for when the process is not busyFlorent Le Coz
We use some dirty monkey-patching to add a idle_call() function to the asyncio module. We then use that method to handle each received stanza only when the event loop is not busy with some other IO (mainly, the standard input)
2014-11-14Lower the timeout for each DNS resolution attemptFlorent Le Coz
2014-11-05Also work without SRV recordsFlorent Le Coz
2014-11-02Use aiodns instead of dnspython to query DNS recordsmathieui
2014-09-01Remove all trailing whitespaces.Emmanuel Gil Peyrot
2014-07-17Rename to slixmppFlorent Le Coz