27
27
SHUT_RDWR ,
28
28
error ,
29
29
socket ,
30
- SOCK_DGRAM ,
31
30
SOCK_STREAM ,
32
31
)
33
32
from os import makedirs
34
33
from os .path import join
35
34
from weakref import ref
36
35
from warnings import simplefilter
37
- from concurrent .futures import ThreadPoolExecutor
38
36
39
37
import flaky
40
38
@@ -4319,8 +4317,8 @@ def verify_cookie(ssl, cookie):
4319
4317
c = Connection (c_ctx )
4320
4318
c .set_connect_state ()
4321
4319
4322
- # These are mandatory, because openssl can't guess the MTU for a memory bio and
4323
- # will produce a mysterious error if you make it try.
4320
+ # These are mandatory, because openssl can't guess the MTU for a memory
4321
+ # bio and will produce a mysterious error if you make it try.
4324
4322
c .set_ciphertext_mtu (1500 )
4325
4323
s .set_ciphertext_mtu (1500 )
4326
4324
@@ -4336,7 +4334,8 @@ def pump_membio(label, source, sink):
4336
4334
# Gross hack: if this is a ClientHello, save it so we can find it
4337
4335
# later. See giant comment above.
4338
4336
try :
4339
- # if ContentType == handshake and HandshakeType == client_hello:
4337
+ # if ContentType == handshake and HandshakeType ==
4338
+ # client_hello:
4340
4339
if chunk [0 ] == 22 and chunk [13 ] == 1 :
4341
4340
nonlocal latest_client_hello
4342
4341
latest_client_hello = chunk
@@ -4347,8 +4346,8 @@ def pump_membio(label, source, sink):
4347
4346
return True
4348
4347
4349
4348
def pump ():
4350
- # Raises if there was no data to pump, to avoid infinite loops if we aren't
4351
- # making progress.
4349
+ # Raises if there was no data to pump, to avoid infinite loops if
4350
+ # we aren't making progress.
4352
4351
assert pump_membio ("s -> c" , s , c ) or pump_membio ("c -> s" , c , s )
4353
4352
4354
4353
c_handshaking = True
0 commit comments