-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for binary websockets #38
Comments
Also, if this were done, it could also mean that SSHy would be able to work with an out-of-the-box wsproxy instead of requiring the patched one supplied with SSHy. That would be a big bonus. I notice that upstream wsproxy has now pinned the version of ws to 2.x, which means it doesn't need the patch in stuicey/wsProxy@8ef26ac (although it still might be a good idea to submit this upstream so it can move to ws 3.x) |
Yeah, its trivial to update this for use with websockify (see here), I'd be hesitant to make it part of the normal release though unless websockify or another major websocket proxy supports multiplexing? If theres a better suited alternative I don't see the harm in switching, all wsproxy does is bridge ws <-> tcp sockets. wsproxy was developed for use with Ragnarök Online, so I wouldn't be surprised if they want to stay at ws 2.x to maintain compatability. |
Is ws (library) >= 3.x required for multiplexing then? I don't know much about websockets, but as far as I can tell, the benefit from multiplexing is if you have lots of tabs open with ssh sessions, all going to the same backend server. Is that correct? ISTM that binary websockets would be more widely compatible. You can still release an optimised version of wsproxy, using a newer version of ws library, but it would be optional. Given that wsproxy is barely maintained it's probably worth forking wsproxy with a different name, so it's available via a simple |
According to README.md, SSHy is compatible with websockify when you use wrapper.html and insert the correct websocket endpoint.
However I found it doesn't work: SSHy requests
Sec-WebSocket-Protocol: base64
, but websockify has dropped base64 support and now only implementsbinary
. It gives a 400 response. See here for a tcpdump of the exchange.I think it would be useful for SSHy to support "binary" - or if not, at least to remove the reference to websockify from the documentation.
It looks like binary support might be straightforward. I found this patch:
jonsito/labo_sphere@1c3a235
However it applies to index.html, not to wrapper.html (which only uses the minified javascript).
The text was updated successfully, but these errors were encountered: