diff --git a/tokio-xmpp/ChangeLog b/tokio-xmpp/ChangeLog index 5d3675e3..516c24a1 100644 --- a/tokio-xmpp/ChangeLog +++ b/tokio-xmpp/ChangeLog @@ -41,6 +41,7 @@ XXXX-YY-ZZ RELEASER - `rustls` is now re-exported if it is enabled, to allow applications to set the default crypto provider if needed. (!581) - Derive Debug on Client and associated structs + - Document TlsStream behind 'ktls' feature * Changes: - On Linux, once the TLS session is established, we can delegate the actual encryption and decryption to the kernel, which in turn can diff --git a/tokio-xmpp/src/connect/tls_common.rs b/tokio-xmpp/src/connect/tls_common.rs index 92cfb466..e5dead16 100644 --- a/tokio-xmpp/src/connect/tls_common.rs +++ b/tokio-xmpp/src/connect/tls_common.rs @@ -36,6 +36,7 @@ use { pub use tokio_rustls::client::TlsStream; #[cfg(all(feature = "ktls", not(feature = "native-tls")))] +/// Tls Stream type based on Ktls pub type TlsStream = ktls::KtlsStream; #[cfg(feature = "native-tls")]