From c707d5af5e8653df4d9cfc73169fcbb13bd67e0c Mon Sep 17 00:00:00 2001 From: Thayne McCombs Date: Tue, 5 Dec 2023 00:13:16 -0700 Subject: [PATCH] docs: Remove reference to hyper Incoming --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d47ac82..196d775 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,9 @@ This library is intended to automatically initiate a TLS connection as for each new connection in a source of new streams (such as a listening TCP or unix domain socket). -In particular, the `TlsListener` can be used as the `incoming` argument to `hyper::server::Server::builder` (requires -one of the `hyper-h1` or `hyper-h2` features). +It can be used to easily create a `Stream` of TLS connections from a listening socket. See examples for examples of usage. -You must enable either one of the `rustls`, `native-tls`, or `openssl` features depending on which implementation you +You must enable either one of the `rustls`, `native-tls`, or `openssl` features depending on which implementation you would like to use.