summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/resolver.py
AgeCommit message (Collapse)Author
2014-06-08Bring back use of dnspython for A/AAAA resolution.Lance Stout
This is behind a use_dnspython flag, however, so it can be disabled as desired.
2013-12-09Don't use dnspython for A and AAAA (but keep it for SRV).Guilhem Lettron
dnspython don't perform a full resolv. For example it don't manage /etc/hosts on linux.
2013-07-29Don't resolve AAAA records if there is no dnspython nor IPv6 supportAlexander Shorin
If system doesn't has IPv6 support or dnspython package, socket.getaddrinfo with AF_INET6 flag return weird IP info for requested host, making SleekXMPP crush with more weird error.
2013-07-18DRYed up the OSError/socket.gaierror handler.Jake Basile
2013-07-18Caught OSError when querying AAAA records.Jake Basile
2012-12-29Fix other instance of inet_pton usage.Lance Stout
2012-08-10Fix tracking service name for DIGEST-MD5Lance Stout
2012-07-16Add a warning log if dnspython is not found for SRV lookup.Lance Stout
Closes issue #183
2012-06-20Make the use of IPv6 configurable.Lance Stout
Set self.use_ipv6 = False before connecting. Fixes issue #175
2012-05-06Windows doesn't support inet_pton.Lance Stout
2012-04-10Fix DNS resolution results for IP literals.Lance Stout
2012-04-06Add default mapping of localhost to ::1 and 127.0.0.1Lance Stout
2012-03-30Add better DNS resolver wrapper.Lance Stout