Request for Native Websocket which is supported on HTTP socket #5467
Labels
feature request
Issues that request new features to be added to Node.js.
http
Issues or PRs related to the http subsystem.
there are 5 websock libraries
http://stackoverflow.com/questions/16392260/which-websocket-library-to-use-with-node-js
If you have event base sockets and handling already, websocket itself isn't a lot to implement
https://github.com/d3x0r/SACK/blob/master/src/netlib/html5.websocket/client/html5.websocket.client.c
https://github.com/d3x0r/SACK/blob/master/src/netlib/html5.websocket/server/html5.websocket.c
https://github.com/d3x0r/SACK/blob/master/src/netlib/html5.websocket/html5.websocket.common.c
(some structures defined in .h files nearby)
Maybe that one can get a websock object from the HTTP?
Or maybe I'm msising something and the HTTP connection has a mode it goes into to support length-data transmissions bi-directionally?
That's all websock is once it negotiates is a UTF-8 -esqe encoding of lengths... most implementations didn't go over 16k fragments.
The text was updated successfully, but these errors were encountered: