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 committed Mar 26, 2021
1 parent b6491e2 commit b14f54a
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
@@ -1,7 +1,8 @@
# Changes

## Unreleased - 2021-xx-xx
* 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

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 b14f54a

Please sign in to comment.