__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# -*- 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 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 | 13.76 KB | 0644 |
|
| component.py | File | 14.85 KB | 0644 |
|
| error.py | File | 10.19 KB | 0644 |
|
| ijabber.py | File | 5.21 KB | 0644 |
|
| jid.py | File | 6.98 KB | 0644 |
|
| jstrports.py | File | 902 B | 0644 |
|
| sasl.py | File | 7.17 KB | 0644 |
|
| sasl_mechanisms.py | File | 8.53 KB | 0644 |
|
| xmlstream.py | File | 35.77 KB | 0644 |
|
| xmpp_stringprep.py | File | 6.86 KB | 0644 |
|