BrandonLeeDotDev
BrandonLeeDotDev
Bump
It looks like the addr is just being dropped... `pingora-core/src/protocols/l4/listener.rs` or am I missing something? ``` impl Listener { /// Accept a connection from the listening endpoint pub async fn...
@rubend056 would you mind emailing me those modules as well? [email protected]
this is ~(the response) in Firefox
I see why the above failed. By calling accept I was attempting to accept the next incoming connection. Which is why I tried the following, non preferred, Fd path... Even...
Imo, this is just default behavior... that said this is my final solution ``` pub async fn accept(&self, fun: F) -> io::Result where F: FnOnce(TlsStream, SocketAddr) -> Fut, Fut: Future...
@djc > I suppose we could maybe support this use case in the LazyConfigAcceptor, optionally postponing the sending of the alert until the caller has okayed it? - [here](https://github.com/rustls/tokio-rustls/issues/54#issuecomment-1991205041) Yeah,...
@c92s I ended up doing this. The first byte is the type signature. 22 (peeked: [22] io::Result where F: FnOnce(TlsStream, SocketAddr) -> Fut, Fut: Future + Send + 'static, F:...