Catherine West
Catherine West
Oh okay that makes sense, I didn't think about at such low packet sizes and bandwidth limits that just the header overhead is significant! I too wish there were more...
Hey, sorry I've been behind on issues and PRs, I'm slowly going back through my backlog to catch up. > MessageChannels doesn't differentiate between connections (i.e. different people connecting to...
You added an infinite loop in the server code such that `Server::recv` is no longer called, the server doesn't work if you don't call `Server::recv` because that also does background...
I realize this is sort of a weird design, and it could be changed, but `Server::recv` calls the internal method `Server::process` which does things like sending SCTP heartbeats, which is...
I'd love to, does it support DTLS now? When I originally looked it didn't and that's the only reason I used OpenSSL.
Oh it's not supposed to be there, it's a leftover from using tokio directly, and specifically using this method to create a `UdpSocket` : https://docs.rs/tokio/latest/tokio/net/struct.UdpSocket.html#method.bind That method is `async`, but...
Right now (with one small commit that I'm adding) it's possible to implement a graceful shutdown on top of the current `Server` I *think*. The graceful shutdown paths are a...
I would accept a PR to make this a method on `Server` as well, if anyone is interested, but I actually think that before this happens the entire graceful shutdown...
Yeah I should be accepting PRs for examples but I've just been very very busy lately. I'm sorry it took me so long to respond. I'm at least going to...
I'm very sorry for dropping the ball on this PR, I should have been more responsive. 😔 This has been implemented in #74 though, so we have a *very nearly*...