Santosh Baliarsingh
Results
1
issues of
Santosh Baliarsingh
### Summary Python 3.13 removed `ssl.wrap_socket`, causing `AttributeError` when running h2csmuggler. ### Fix Replaced: ```python retSock = ssl.wrap_socket(sock, ssl_version=ssl.PROTOCOL_TLS) ``` with ```python context = ssl.SSLContext(ssl.PROTOCOL_TLS) retSock = context.wrap_socket(sock, server_hostname=proxy_url.hostname) ```