Skip to content

Commit

Permalink
rename actix_tls::accept::nativetls module to native_tls
Browse files Browse the repository at this point in the history
  • Loading branch information
fakeshadow authored and robjtede committed Mar 26, 2021
1 parent 9dde944 commit bb83230
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion actix-tls/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
generation failed instead of panic. [#296]
* Remove `connect::ssl::openssl::OpensslConnectServiceFactory`. [#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
[#296]: https://github.com/actix/actix-net/pull/296
Expand Down
2 changes: 1 addition & 1 deletion actix-tls/src/accept/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub mod openssl;
pub mod rustls;

#[cfg(feature = "native-tls")]
pub mod nativetls;
pub mod native_tls;

pub(crate) static MAX_CONN: AtomicUsize = AtomicUsize::new(256);

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion actix-tls/src/connect/ssl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ pub mod openssl;
pub mod rustls;

#[cfg(feature = "native-tls")]
pub mod nativetls;
pub mod native_tls;
File renamed without changes.

0 comments on commit bb83230

Please sign in to comment.