summaryrefslogtreecommitdiff
path: root/slixmpp
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-02-04 18:31:43 +0100
committermathieui <mathieui@mathieui.net>2021-02-04 18:31:43 +0100
commit650e1a2ed5d3c665e511c5fdac300e9a57d242bb (patch)
tree7f616d02ecbd1401565c561698407e8568f3c914 /slixmpp
parentc486c0e8219da4cdea6988b2948ffc93cb381bec (diff)
downloadslixmpp-650e1a2ed5d3c665e511c5fdac300e9a57d242bb.tar.gz
slixmpp-650e1a2ed5d3c665e511c5fdac300e9a57d242bb.tar.bz2
slixmpp-650e1a2ed5d3c665e511c5fdac300e9a57d242bb.tar.xz
slixmpp-650e1a2ed5d3c665e511c5fdac300e9a57d242bb.zip
docs/xmlstream: remove HTTP proxy references
It has been removed years ago.
Diffstat (limited to 'slixmpp')
-rw-r--r--slixmpp/xmlstream/xmlstream.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/slixmpp/xmlstream/xmlstream.py b/slixmpp/xmlstream/xmlstream.py
index b80c55d3..48784a4b 100644
--- a/slixmpp/xmlstream/xmlstream.py
+++ b/slixmpp/xmlstream/xmlstream.py
@@ -157,10 +157,6 @@ class XMLStream(asyncio.BaseProtocol):
#: non-SSL traffic and another for SSL traffic.
self.use_ssl = False
- #: If set to ``True``, attempt to connect through an HTTP
- #: proxy based on the settings in :attr:`proxy_config`.
- self.use_proxy = False
-
#: If set to ``True``, attempt to use IPv6.
self.use_ipv6 = True
@@ -173,13 +169,6 @@ class XMLStream(asyncio.BaseProtocol):
#: to ``False``.
self.use_cdata = False
- #: An optional dictionary of proxy settings. It may provide:
- #: :host: The host offering proxy services.
- #: :port: The port for the proxy service.
- #: :username: Optional username for accessing the proxy.
- #: :password: Optional password for accessing the proxy.
- self.proxy_config = {}
-
#: The default namespace of the stream content, not of the
#: stream wrapper itself.
self.default_ns = ''