rename actix_tls:🉑:nativetls module to native_tls

This commit is contained in:
fakeshadow 2021-03-26 20:36:57 +08:00 committed by Rob Ede
parent 9dde944b46
commit bb8323081f
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
5 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,8 @@
generation failed instead of panic. [#296] generation failed instead of panic. [#296]
* Remove `connect::ssl::openssl::OpensslConnectServiceFactory`. [#297] * Remove `connect::ssl::openssl::OpensslConnectServiceFactory`. [#297]
* Remove `connect::ssl::openssl::OpensslConnectService`. [#297] * Remove `connect::ssl::openssl::OpensslConnectService`. [#297]
* Add `connect::ssl::nativetls` module for native tls support. [#295] * Add `connect::ssl::native_tls` module for native tls support. [#295]
* Rename `accept::{nativetls => native_tls}`. [#295]
[#295]: https://github.com/actix/actix-net/pull/295 [#295]: https://github.com/actix/actix-net/pull/295
[#296]: https://github.com/actix/actix-net/pull/296 [#296]: https://github.com/actix/actix-net/pull/296

View File

@ -16,7 +16,7 @@ pub mod openssl;
pub mod rustls; pub mod rustls;
#[cfg(feature = "native-tls")] #[cfg(feature = "native-tls")]
pub mod nativetls; pub mod native_tls;
pub(crate) static MAX_CONN: AtomicUsize = AtomicUsize::new(256); pub(crate) static MAX_CONN: AtomicUsize = AtomicUsize::new(256);

View File

@ -7,4 +7,4 @@ pub mod openssl;
pub mod rustls; pub mod rustls;
#[cfg(feature = "native-tls")] #[cfg(feature = "native-tls")]
pub mod nativetls; pub mod native_tls;