Daniel Abramov

Results 81 comments of Daniel Abramov

@jeffesquivels `Framed` and `WebSocketStream` are indeed similar (if not the same). When you create a `Framed` object, you specify the stream and the object which is capable of doing encoding...

> I didn't quite understand the last part (i.e. how it could be implemented in the current state), if you have any examples of projects that are using tokio-tungstenite in...

Thanks for pointing out to that. Yeah, it's a bit boilerplate, which probably could be simplified at some point, so that we need less dependencies at the beginning. Tokio-related crates...

Hm, while we can add some error handling, the way the error is handled depends on a use case. We tried to [document what each error means](https://docs.rs/tungstenite/0.10.1/tungstenite/error/enum.Error.html). Should we probably...

We have not planned it, because you can get the same functionality by calling the appropriate functions on the `Stream` and `Sink`. It would be possible to add a wrapper...

If you run it inside the docker container, you would have to expose ports and provide STUN and TURN configuration. If you don't do so, the warning in the logs...

Indeed. I encountered a weird bug yesterday and spent several hours debugging my code, but then I realized that the issue is in `CFArray::from_copyable()`. A simple example which reproduces this...

I have the same error mesage as @sickHamm, it crashes when I try to use `piston_window` to create a window (I believe `piston_window` relies on `glutin` as a default backend)....

I think it's possible, but it would require some changes in `tungstenite-rs`. If I got your request right, there is a change in [HandshakeRole](https://docs.rs/tungstenite/0.9.1/src/tungstenite/handshake/mod.rs.html#97) required, so that it returns not...

> What is the state of this Issue? I have not yet got acknowledgement from the reporter if the behavior that I described in the previous comment is the one...