mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-11 20:42:23 +01:00
Fixup comments
This commit is contained in:
parent
e70f0081da
commit
fbb758a7ce
1 changed files with 9 additions and 1 deletions
|
@ -192,12 +192,19 @@ class MatrixHostnameEndpointFactory(object):
|
||||||
class MatrixHostnameEndpoint(object):
|
class MatrixHostnameEndpoint(object):
|
||||||
"""An endpoint that resolves matrix:// URLs using Matrix server name
|
"""An endpoint that resolves matrix:// URLs using Matrix server name
|
||||||
resolution (i.e. via SRV). Does not check for well-known delegation.
|
resolution (i.e. via SRV). Does not check for well-known delegation.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
reactor (IReactor)
|
||||||
|
tls_client_options_factory (ClientTLSOptionsFactory|None):
|
||||||
|
factory to use for fetching client tls options, or none to disable TLS.
|
||||||
|
srv_resolver (SrvResolver): The SRV resolver to use
|
||||||
|
parsed_uri (twisted.web.client.URI): The parsed URI that we're wanting
|
||||||
|
to connect to.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, reactor, tls_client_options_factory, srv_resolver, parsed_uri):
|
def __init__(self, reactor, tls_client_options_factory, srv_resolver, parsed_uri):
|
||||||
self._reactor = reactor
|
self._reactor = reactor
|
||||||
|
|
||||||
# We reparse the URI so that defaultPort is -1 rather than 80
|
|
||||||
self._parsed_uri = parsed_uri
|
self._parsed_uri = parsed_uri
|
||||||
|
|
||||||
# set up the TLS connection params
|
# set up the TLS connection params
|
||||||
|
@ -272,6 +279,7 @@ class MatrixHostnameEndpoint(object):
|
||||||
# before now, due to needing to rewrite the Host header of the HTTP
|
# before now, due to needing to rewrite the Host header of the HTTP
|
||||||
# request.
|
# request.
|
||||||
|
|
||||||
|
# We reparse the URI so that defaultPort is -1 rather than 80
|
||||||
parsed_uri = urllib.parse.urlparse(self._parsed_uri.toBytes())
|
parsed_uri = urllib.parse.urlparse(self._parsed_uri.toBytes())
|
||||||
|
|
||||||
host = parsed_uri.hostname
|
host = parsed_uri.hostname
|
||||||
|
|
Loading…
Reference in a new issue