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

16 lines
469 B
V
Raw Normal View History

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