mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
improve ClientHello.alpn_protocols API
This commit is contained in:
parent
92ab90bb89
commit
74a04f41ee
@ -292,7 +292,7 @@ class TlsClientHello:
|
||||
if self._client_hello.extensions:
|
||||
for extension in self._client_hello.extensions.extensions:
|
||||
if extension.type == 0x10:
|
||||
return list(extension.body.alpn_protocols)
|
||||
return list(x.name for x in extension.body.alpn_protocols)
|
||||
return []
|
||||
|
||||
@classmethod
|
||||
@ -519,8 +519,8 @@ class TlsLayer(base.Layer):
|
||||
# We only support http/1.1 and h2.
|
||||
# If the server only supports spdy (next to http/1.1), it may select that
|
||||
# and mitmproxy would enter TCP passthrough mode, which we want to avoid.
|
||||
alpn = [x.name for x in self._client_hello.alpn_protocols if
|
||||
not (x.name.startswith(b"h2-") or x.name.startswith(b"spdy"))]
|
||||
alpn = [x for x in self._client_hello.alpn_protocols if
|
||||
not (x.startswith(b"h2-") or x.startswith(b"spdy"))]
|
||||
if alpn and b"h2" in alpn and not self.config.options.http2:
|
||||
alpn.remove(b"h2")
|
||||
|
||||
|
@ -23,5 +23,4 @@ class TestClientHello:
|
||||
)
|
||||
c = TlsClientHello(data)
|
||||
assert c.sni == 'example.com'
|
||||
assert c.alpn_protocols[0].name == b'h2'
|
||||
assert c.alpn_protocols[1].name == b'http/1.1'
|
||||
assert c.alpn_protocols == [b'h2', b'http/1.1']
|
||||
|
Loading…
Reference in New Issue
Block a user