Simplified https test

This commit is contained in:
Mattia Giambirtone 2023-06-18 13:22:57 +02:00 committed by nocturn9x
parent a91fb8eb8f
commit 81bdd64a7e
Signed by: nocturn9x
GPG Key ID: 8270F9F467971E59
1 changed files with 1 additions and 4 deletions

View File

@ -1,6 +1,5 @@
import structio
import sys
import ssl
import time
_print = print
@ -13,9 +12,7 @@ def print(*args, **kwargs):
async def test(host: str, port: int, bufsize: int = 4096):
print(f"Attempting a connection to {host}:{port}")
context = ssl.create_default_context()
context.server_hostname = host
socket = await structio.socket.connect_ssl_socket(host, port, ssl_context=context)
socket = await structio.socket.connect_ssl_socket(host, port)
print("Connected")
# Ensures the code below doesn't run for more than 5 seconds
with structio.skip_after(5) as scope: