0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-16 05:00:24 +00:00

Only test Websocket RFC6455 in Autobahn from now on

This commit is contained in:
Loïc Hoguin 2013-04-24 20:33:51 +02:00
parent ad91aaf81a
commit f329862384

View file

@ -39,13 +39,10 @@ def client_config():
'options': {'failByDrop': False}, 'options': {'failByDrop': False},
'enable-ssl': False, 'enable-ssl': False,
'servers': [{ 'servers': [{
'agent': 'Cowboy/10', 'agent': 'Cowboy',
'url': 'ws://localhost:33080/echo', 'url': 'ws://localhost:33080/echo',
'options': {'version': 10}}, # hybi-10 'options': {'version': 18} # RFC6455
{'agent': 'Cowboy/18', }],
'url': 'ws://localhost:33080/echo',
'options': {'version': 18}} # RFC6455
],
'cases': ['*'], 'cases': ['*'],
'exclude-cases': [] } 'exclude-cases': [] }
return base return base