Brian Picciano
Brian Picciano
That sounds like a good idea, and should be easy enough to incorporate into a new `proc` package. Thanks for the suggestion :)
@quininer can you describe a bit more how that would work? From what I understand of how the LazyConfigAcceptor works, once `accept` has returned [here](https://github.com/rustls/tokio-rustls/blob/b7289d7e7e1520302433bcd2b316e6dc4bed227c/src/lib.rs#L281) I'm not able to get...
Thanks, that makes sense. I've made a new branch with that change here: https://code.betamike.com/micropelago/tokio-rustls/commit/3d462a1d97836cdb0600f0bc69c5e3b3310f6d8c and moved all the rest of the AsyncRead wrapping code into my application.
Hi @ltagliamonte , can you clarify if you're using v3 or v4? The way the Pool works in each is extremely different, so it's not possible to answer without knowing...
Nice, thanks. So in v4 this question is a bit tricky because there's potentially two places which could be blocking: 1) Getting a Conn from the Pool. This can block...
@ltagliamonte-dd Yup that's correct, all commands are considered shareable by default, only the blocking commands are exceptions. If you wanted to set different ActionProperties for an Action you could use...
For Pipeline there's two properties in play. First and foremost is the CanPipeline field of ActionProperties. If any Actions are added to a Pipeline with CanPipeline being false then radix...
Hi @ningyougang , I think you understand the Pool implementation pretty well, just a minor clarification: > When do refill operation, allow some overflow The refill operation will not create...
Attacking this from the outside: #18036
@stefansundin I'll add it to my todo list ;) in the meantime you can see how I'm using it [here](https://code.betamike.com/micropelago/domani/src/commit/1a6f8042894e3301cc9711e076df143ed758fa36/src/service/http/proxy.rs). It's pretty straightforward, you just need to use the `hyper_util::client::legacy::connect::HttpConnector`...