0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-15 20:50: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},
'enable-ssl': False,
'servers': [{
'agent': 'Cowboy/10',
'agent': 'Cowboy',
'url': 'ws://localhost:33080/echo',
'options': {'version': 10}}, # hybi-10
{'agent': 'Cowboy/18',
'url': 'ws://localhost:33080/echo',
'options': {'version': 18}} # RFC6455
],
'options': {'version': 18} # RFC6455
}],
'cases': ['*'],
'exclude-cases': [] }
return base