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
Hey, great package! I feel silly not knowing this existed, as I recently tried to look over various websocket packages in Julia to see if we needed to keep the half-working implementation in HTTP.jl or if I needed to overhaul. If I would have found this, I think we could have directed folks here. In any case, I ended up overhauling the code, including doing integrated testing against the autobahn testsuite.
Anyway, I'm going around finding HTTP.jl dependents who may need help updating to 1.0 and that's how I found the package here.
Long story short, I'm now curious if there are plans to support the permessage-deflate extension to the websocket protocol? We had this issue opened up for HTTP.jl recently and I'm just wondering if people have ideas on the best way to support.
Cheers!
The text was updated successfully, but these errors were encountered:
In short - No immediate plans to support permessage-deflate.
I have however left Sec-WebSocket-Extensions hooks for the client here and here and the server here.
This is partly because I have not yet implemented Sec-WebSocket-Extensions and need to take time to understand the working innards of permessage-deflate. ATM I cannot afford to do this, and the package does for me what I need it to do.
This project is pretty much an architectural translation of NODEjs websocket into Julia. The API interface with event hooks, error handlers, auth functions and emit and broadcast server methods is a very powerful toolkit for building higher level application logic.
I started development here by trying to use HTTP.Websockets as a dependency, and then wrap my API logic around this, but found that the code did not give me the handles I needed out of the box. It would be nice if all the low level WebSocket stuff was exposed, documented and maintained as a standards compliant library in HTTP.WebSockets. This could enable any number of Julia WebSocket API libraries (such as this one) to evolve around (and contribute to) a common solid foundation.
Anyway - I have no idea how you are fixed.
I am not going to be in a position to do timely maintenance and admin on this repository, but I am happy to invite you as a collaborator if you wish to work things in parallel.
Hey, great package! I feel silly not knowing this existed, as I recently tried to look over various websocket packages in Julia to see if we needed to keep the half-working implementation in HTTP.jl or if I needed to overhaul. If I would have found this, I think we could have directed folks here. In any case, I ended up overhauling the code, including doing integrated testing against the autobahn testsuite.
Anyway, I'm going around finding HTTP.jl dependents who may need help updating to 1.0 and that's how I found the package here.
Long story short, I'm now curious if there are plans to support the
permessage-deflate
extension to the websocket protocol? We had this issue opened up for HTTP.jl recently and I'm just wondering if people have ideas on the best way to support.Cheers!
The text was updated successfully, but these errors were encountered: