Skip to content

Commit

Permalink
refactor acceptor error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Sep 28, 2018
1 parent 0f1c80c commit f2d42e5
Show file tree
Hide file tree
Showing 9 changed files with 289 additions and 195 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ flate2-rust = ["flate2/rust_backend"]

[dependencies]
actix = "0.7.0"
actix-net = { git="https://github.com/actix/actix-net.git" }
#actix-net = { path = "../actix-net" }
#actix-net = { git="https://github.com/actix/actix-net.git" }
actix-net = { path = "../actix-net" }

base64 = "0.9"
bitflags = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions src/client/connector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ type SslConnector = Arc<ClientConfig>;
feature = "ssl",
feature = "tls",
feature = "rust-tls",
),))]
)))]
type SslConnector = ();

use server::IoStream;
Expand Down Expand Up @@ -290,7 +290,7 @@ impl Default for ClientConnector {
feature = "ssl",
feature = "tls",
feature = "rust-tls",
),))]
)))]
{
()
}
Expand Down
Loading

0 comments on commit f2d42e5

Please sign in to comment.