You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix parse error, accept header values separated without space (#46)
The following example failed:
$ socat - TCP:localhost:1234,crnl
GET / HTTP/1.1
Connection: Upgrade,Keep-Alive
Upgrade: websocket
Sec-WebSocket-Key: hq0S1hpdldRhTHVwXBDPvg==
Sec-WebSocket-Version: 13
Host: localhost:1234
HTTP/1.1 400 Bad Request
$
but would have worked as expected with
Connection: Upgrade, Keep-Alive
0 commit comments