1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vdoc: add http connection read/write timeouts (fix #7343)

This commit is contained in:
Delyan Angelov
2020-12-15 17:12:33 +02:00
parent e40e1500a8
commit a4d3a0575a
2 changed files with 6 additions and 1 deletions

View File

@@ -175,6 +175,8 @@ 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') }
}