Changeset 178:37f36ea93838 for wokkel/client.py
- Timestamp:
- Jan 12, 2013, 4:40:38 PM (9 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wokkel/client.py
r96 r178 88 88 def __init__(self, jid, password, host=None, port=5222): 89 89 self.jid = jid 90 self.domain = jid.host90 self.domain = generic.prepareIDNName(jid.host) 91 91 self.host = host 92 92 self.port = port … … 183 183 184 184 def clientCreator(factory): 185 domain = factory.authenticator.jid.host185 domain = generic.prepareIDNName(factory.authenticator.jid.host) 186 186 c = XMPPClientConnector(reactor, domain, factory) 187 187 c.connect()
Note: See TracChangeset
for help on using the changeset viewer.