websockets-rs / rust-websocket

A WebSocket (RFC6455) library written in Rust
http://websockets-rs.github.io/rust-websocket/
MIT License
1.55k stars 223 forks source link

Open access to server::Connection fields #92

Closed vi closed 7 years ago

vi commented 7 years ago

Allow users to make custom servers (non-TCP, non-SSL). For example, UNIX-socket-based server for Nginx integration.

illegalprime commented 7 years ago

yeah this is discussed more in #58 what do you think of the proposal?

illegalprime commented 7 years ago

@vi this is coming in a different style in #80 , which just needs docs now and has a lot of cool stuff.

illegalprime commented 7 years ago

you can now make connections on anything that impl Read + Write or a pair of (Read, Write).