# -*- test-case-name: twisted.words.test -*- # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ A temporary placeholder for client-capable strports, until we sufficient use cases get identified """ from __future__ import absolute_import, division from twisted.internet.endpoints import _parse def _parseTCPSSL(factory, domain, port): """ For the moment, parse TCP or SSL connections the same """ return (domain, int(port), factory), {} def _parseUNIX(factory, address): return (address, factory), {} _funcs = { "tcp" : _parseTCPSSL, "unix" : _parseUNIX, "ssl" : _parseTCPSSL } def parse(description, factory): args, kw = _parse(description) return (args[0].upper(),) + _funcs[args[0]](factory, *args[1:], **kw) def client(description, factory): from twisted.application import internet name, args, kw = parse(description, factory) return getattr(internet, name + 'Client')(*args, **kw)
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
__init__.py | File | 167 B | 0644 |
|
client.py | File | 14.04 KB | 0644 |
|
component.py | File | 15.23 KB | 0644 |
|
error.py | File | 10.55 KB | 0644 |
|
ijabber.py | File | 5.25 KB | 0644 |
|
jid.py | File | 7.08 KB | 0644 |
|
jstrports.py | File | 978 B | 0644 |
|
sasl.py | File | 7.29 KB | 0644 |
|
sasl_mechanisms.py | File | 8.53 KB | 0644 |
|
xmlstream.py | File | 35.98 KB | 0644 |
|
xmpp_stringprep.py | File | 7.05 KB | 0644 |
|