added inline documentation for new dns methods

This commit is contained in:
Nathan Fritz
2011-08-18 01:04:01 -07:00
parent fb78bf0996
commit f75b6bf955
2 changed files with 24 additions and 0 deletions

View File

@@ -141,6 +141,14 @@ class ClientXMPP(BaseXMPP):
use_tls=use_tls, reattempt=reattempt)
def get_dns_records(self, domain, port=None):
"""
Get the DNS records for a domain.
Overridden XMLStream.get_dns_records to use SRV.
Arguments:
domain -- The domain in question.
port -- If the results don't include a port, use this one.
"""
if port is None:
port = self.default_port
if DNSPYTHON: