@@ -344,24 +344,26 @@ def setup_ice_servers(self, webrtc):
344
344
async def connect (self ):
345
345
print ("Connecting to handshake server" )
346
346
347
- # Try different SSL contexts based on what works
347
+ # Convert wss:// to ws:// for no-SSL attempt
348
+ ws_server = self .server .replace ('wss://' , 'ws://' ) if self .server .startswith ('wss://' ) else self .server
349
+
348
350
connection_attempts = [
349
- (lambda : ssl .create_default_context (), "standard SSL" ),
350
- (lambda : ssl ._create_unverified_context (), "unverified SSL" ),
351
- (lambda : None , "no SSL" )
351
+ (lambda : ssl .create_default_context (), "standard SSL" , self . server ),
352
+ (lambda : ssl ._create_unverified_context (), "unverified SSL" , self . server ),
353
+ (lambda : None , "no SSL" , ws_server ) # Use ws:// URL for no-SSL
352
354
]
353
355
354
356
last_exception = None
355
- for create_ssl_context , context_type in connection_attempts :
357
+ for create_ssl_context , context_type , server_url in connection_attempts :
356
358
try :
357
- print (f"Attempting connection with { context_type } " )
359
+ print (f"Attempting connection with { context_type } to { server_url } " )
358
360
ssl_context = create_ssl_context ()
359
361
if ssl_context :
360
362
ssl_context .check_hostname = False
361
363
ssl_context .verify_mode = ssl .CERT_NONE
362
364
363
365
self .conn = await websockets .connect (
364
- self . server ,
366
+ server_url ,
365
367
ssl = ssl_context ,
366
368
ping_interval = None
367
369
)
0 commit comments