1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-12-21 23:56:35 +00:00

fix openssl uses

This commit is contained in:
Nikolay Kim 2018-09-11 08:59:03 -07:00
parent dc50268c8a
commit abef930f87
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ mod worker;
pub use self::server::Server;
pub use self::services::ServerServiceFactory;
pub(crate) use self::worker::Connections;
pub(crate) use self::worker::{Connections, ConnectionsGuard};
/// Pause accepting incoming connections
///

View file

@ -7,7 +7,7 @@ use tokio_openssl::{AcceptAsync, ConnectAsync, SslAcceptorExt, SslConnectorExt,
use super::MAX_CONN_COUNTER;
use connector::ConnectionInfo;
use worker::{Connections, ConnectionsGuard};
use server::{Connections, ConnectionsGuard};
use {NewService, Service};
/// Support `SSL` connections via openssl package