1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

Test TCP_NODELAY in hyper_hello (#2060)

This commit is contained in:
Ryan Dahl 2019-04-06 16:56:30 +03:00 committed by GitHub
parent 9e890c260b
commit cb11bbd839
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,6 +29,7 @@ fn main() {
};
let server = Server::bind(&addr)
.tcp_nodelay(true)
.serve(new_service)
.map_err(|e| eprintln!("server error: {}", e));