Remove some comments referring to OpenSSL
Signed-off-by: Harry Stern <hstern@cloudflare.com>
This commit is contained in:
parent
0ca11b5680
commit
26ac58b2bd
|
|
@ -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))]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue