mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
net: add tcp_default_read_timeout and tcp_default_write_timeout and use them consistently
This commit is contained in:
@ -14,13 +14,9 @@ fn setup() (net.TcpListener, net.TcpConn, net.TcpConn) {
|
||||
mut client := net.dial_tcp('127.0.0.1:$server_port') or {
|
||||
panic(err)
|
||||
}
|
||||
client.set_read_timeout(3 * time.second)
|
||||
client.set_write_timeout(3 * time.second)
|
||||
mut socket := server.accept() or {
|
||||
panic(err)
|
||||
}
|
||||
socket.set_read_timeout(3 * time.second)
|
||||
socket.set_write_timeout(3 * time.second)
|
||||
$if debug_peer_ip ? {
|
||||
ip := con.peer_ip() or {
|
||||
'$err'
|
||||
|
Reference in New Issue
Block a user