1
0
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:
Delyan Angelov
2020-12-15 17:39:11 +02:00
parent 560c21629e
commit e3a1756b11
9 changed files with 80 additions and 130 deletions

View File

@ -1,15 +1,14 @@
// Simple raw HTTP head request
import net
import io
// Make a new connection
mut conn := net.dial_tcp('google.com:80')?
defer { conn.close() }
// Simple http HEAD request for a file
conn.write_str('HEAD /index.html HTTP/1.0\r\n\r\n')?
// Make sure to set a timeout so we can wait for a response!
conn.set_read_timeout(net.infinite_timeout)
// Read all the data that is waiting
result := io.read_all(conn)?
// Cast to string and print result
println(result.bytestr())
fn main() {
// Make a new connection
mut conn := net.dial_tcp('google.com:80')?
defer { conn.close() }
// Simple http HEAD request for a file
conn.write_str('HEAD /index.html HTTP/1.0\r\n\r\n')?
// Read all the data that is waiting
result := io.read_all(conn)?
// Cast to string and print result
println(result.bytestr())
}