JayZhao

Results 8 comments of JayZhao

I'm not sure if it's a regression, but it did happen in 0.5.10 per this line: thread 'tokio-runtime-worker' panicked at .cargo/registry/src/index.crates.io-6f17d22bba15001f/**quinn-udp-0.5.10/**src/cmsg/mod.rs:54:37

This is indeed the first time I've encountered this crash. However, this isn't because earlier versions were crash-free and 0.5.10 suddenly introduced the issue. Rather, I've only just started using...

And in my toml: quinn = { version = "0.11.6" } quinn-proto = { version = "0.11.9" } quinn-udp = { version = "0.5.10", features = ["fast-apple-datapath"] }

> [@JayZhao](https://github.com/JayZhao) in addition to djc's ask above, can you also try to reproduce the issue with the following patch applied? > > diff --git a/quinn-udp/src/unix.rs b/quinn-udp/src/unix.rs > index c39941d5..26fcce2d...

As a complete newbee to Rust, I was wondering if you might consider replacing `expect()` with `if let Some` pattern matching to return when no buffer space remains instead of...

Hey, guys, with the help of AI and some luck I may have found the source of this crash: # Bug Report: Control Message Buffer Space Issue on macOS with...

Also: /* * Extended version for sendmsg_x() and recvmsg_x() calls * * For recvmsg_x(), the size of the data received is given by the field * msg_datalen. * * For...

I looked deeper into this later, the root of crash is this: When sending a packet using sendmsg_x, after adding the first control message (16 bytes) and there are still...