Remove some comments referring to OpenSSL

Signed-off-by: Harry Stern <hstern@cloudflare.com>
This commit is contained in:
Harry Stern 2025-07-21 12:02:59 -04:00 committed by Rushil Mehra
parent 0ca11b5680
commit 26ac58b2bd
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
//! Hyper SSL support via OpenSSL. //! Hyper SSL support via BoringSSL.
#![warn(missing_docs)] #![warn(missing_docs)]
#![cfg_attr(docsrs, feature(doc_auto_cfg))] #![cfg_attr(docsrs, feature(doc_auto_cfg))]

View File

@ -21,7 +21,7 @@ use std::{fmt, io};
use tokio::io::{AsyncRead, AsyncWrite, ReadBuf}; use tokio::io::{AsyncRead, AsyncWrite, ReadBuf};
use tower_layer::Layer; use tower_layer::Layer;
/// A Connector using OpenSSL to support `http` and `https` schemes. /// A Connector using BoringSSL to support `http` and `https` schemes.
#[derive(Clone)] #[derive(Clone)]
pub struct HttpsConnector<T> { pub struct HttpsConnector<T> {
http: T, http: T,