Commit e013cfd0 authored by Dominik Charousset's avatar Dominik Charousset

Drop unnecessary namespace qualifiers

parent d3769f0c
...@@ -53,7 +53,7 @@ int caf_main(caf::actor_system& sys, const config& cfg) { ...@@ -53,7 +53,7 @@ int caf_main(caf::actor_system& sys, const config& cfg) {
} }
// Open up a TCP port for incoming connections and start the server. // Open up a TCP port for incoming connections and start the server.
auto server auto server
= caf::net::http::with(sys) = http::with(sys)
// Optionally enable TLS. // Optionally enable TLS.
.context(ssl::context::enable(key_file && cert_file) .context(ssl::context::enable(key_file && cert_file)
.and_then(ssl::emplace_server(ssl::tls::v1_2)) .and_then(ssl::emplace_server(ssl::tls::v1_2))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment