mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +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
|
@ -6,7 +6,6 @@ module http
|
|||
import net.urllib
|
||||
import net.http.chunked
|
||||
import net
|
||||
import time
|
||||
import io
|
||||
|
||||
const (
|
||||
|
@ -398,7 +397,6 @@ fn (req &Request) http_do(host string, method Method, path string) ?Response {
|
|||
s := req.build_request_headers(method, host_name, path)
|
||||
mut client := net.dial_tcp(host)?
|
||||
// TODO this really needs to be exposed somehow
|
||||
client.set_read_timeout(time.second * 30)
|
||||
client.write(s.bytes())?
|
||||
mut bytes := io.read_all(client)?
|
||||
client.close()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue