rust-socketio
rust-socketio copied to clipboard
Add support for WebTransport
Since Nodejs socket io server now supports web transport, is it planned to add its support in rust-socketio? This crate can be used since it provides a WebTransport client: https://github.com/BiagioFesta/wtransport
This sounds interesting, thanks for brining it up! Should be "fairly" easy to add by extending our TransportType. This is done by creating a type representing a WebTransport communication and implementing the Transport trait.
@1c3t3a Thanks for considering 🙂