mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-12-22 03:00:16 +00:00
fixed SRV query - should use dns.rdatatype.SRV
This commit is contained in:
parent
8e95ae2948
commit
3f41fdd231
1 changed files with 3 additions and 1 deletions
|
@ -31,6 +31,7 @@ from . import plugins
|
|||
srvsupport = True
|
||||
try:
|
||||
import dns.resolver
|
||||
import dns.rdatatype
|
||||
except ImportError:
|
||||
srvsupport = False
|
||||
|
||||
|
@ -102,7 +103,8 @@ class ClientXMPP(basexmpp, XMLStream):
|
|||
else:
|
||||
logging.debug("Since no address is supplied, attempting SRV lookup.")
|
||||
try:
|
||||
answers = dns.resolver.query("_xmpp-client._tcp.%s" % self.server)
|
||||
answers = dns.resolver.query("_xmpp-client._tcp.%s" % self.domain,
|
||||
dns.rdatatype.SRV )
|
||||
except dns.resolver.NXDOMAIN:
|
||||
logging.debug("No appropriate SRV record found. Using JID server name.")
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue