1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-26 19:47:43 +02:00

try to parse host first

This commit is contained in:
Nikolay Kim
2018-12-10 18:08:07 -08:00
parent d35c87d228
commit e6daca7995
2 changed files with 12 additions and 8 deletions

View File

@ -143,7 +143,7 @@ impl Accept {
// start accept thread
let _ = thread::Builder::new()
.name("actix-web accept loop".to_owned())
.name("actix-server accept loop".to_owned())
.spawn(move || {
System::set_current(sys);
let mut accept = Accept::new(rx, socks, workers, srv);