aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/web/web_server.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/web_server.rs b/src/web/web_server.rs
index ce1f7ee1..a712a5bd 100644
--- a/src/web/web_server.rs
+++ b/src/web/web_server.rs
@@ -52,8 +52,8 @@ async fn handler(
info!("authority is {}", authority);
// Get HTTP domain/ip from host
- //let domain = host.to_socket_
-
+ let host = authority_to_host(authority)?;
+ info!("host is {}", host);
Ok(Response::new(Body::from("hello world\n")))
}