Luis Enrique Muñoz Martín

Results 204 comments of Luis Enrique Muñoz Martín

Hi! What is the state of this Issue? Is there any idea in mind to return a `HandshakeError::Failure(Error, HandshakeRole::InternalStream)`? I'm in a situation where I need to deregister the stream...

Thanks for the notification. Yeah, I'm using it with `mio`. Until I know from the `mio`'s documentation, it's on the side of the user to call `deregister()`. If you remove...

Hi, I have the same issue rendering texture without *macroquad-tiled*. I have made a minimized example that reproduce the glitch: ```rust use macroquad::prelude::*; #[macroquad::main("BasicShapes")] async fn main() { loop {...

Hi @hasanhaja, thanks for your help! This improvement is quite localized in the library and only two files should be updated: - [src/util/encoding.rs](https://github.com/lemunozm/message-io/blob/master/src/util/encoding.rs) which contains the `Decoder` that should be...

Hi! I'm open to it :) How will you enable this functionality without touching the API? I see some approaches to configure the thread names: - compilation variable. - environment...

As a suggestion, the crate https://github.com/matklad/once_cell could be usefull

Thanks, @RobDavenport ! Yeah, this could be a big candidate. The `TcpConfig` should contain a `Transport::Tcp` internally associated with it (that identified the internal adapter used), and the `connect()` function...

Regarding problem 2. Because the `TransportConfig` must contain the transport (that identifies the adapter used). It could be done with some pinch of unsafe code to handle that transport as...

Hi, Sadly, I currently don't have time to add new features to `message-io`, I can only make maintenance tasks

Thanks for the help, although the solution is a little bit complex. There are two problems to tackle: 1. **The current WebSocket implementation based on [`tungstenite-rs`](https://github.com/snapview/tungstenite-rs) do not support wasm**:...