We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Debug
StartHandshake
1 parent 8ce9b65 commit 81db532Copy full SHA for 81db532
src/lib.rs
@@ -376,6 +376,13 @@ where
376
}
377
378
379
+/// An incoming connection received through [`LazyConfigAcceptor`].
380
+///
381
+/// This contains the generic `IO` asynchronous transport,
382
+/// [`ClientHello`](rustls::server::ClientHello) data,
383
+/// and all the state required to continue the TLS handshake (e.g. via
384
+/// [`StartHandshake::into_stream`]).
385
+#[derive(Debug)]
386
pub struct StartHandshake<IO> {
387
accepted: rustls::server::Accepted,
388
io: IO,
0 commit comments