mirror of
https://github.com/vlang/v.git
synced 2025-09-15 23:42:28 +03:00
net: add tcp_default_read_timeout and tcp_default_write_timeout and use them consistently
This commit is contained in:
parent
560c21629e
commit
e3a1756b11
9 changed files with 80 additions and 130 deletions
|
@ -175,8 +175,6 @@ fn (mut cfg DocConfig) serve_html() {
|
|||
server.close() or { }
|
||||
panic(err)
|
||||
}
|
||||
conn.set_read_timeout(5 * time.second)
|
||||
conn.set_write_timeout(5 * time.second)
|
||||
handle_http_connection(mut conn, server_context)
|
||||
conn.close() or { eprintln('error closing the connection: $err') }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue