14 lines
442 B
V
14 lines
442 B
V
// Simple raw HTTP head request
|
|
import x.net
|
|
import time
|
|
|
|
// Make a new connection
|
|
mut conn := net.dial_tcp('google.com:80')?
|
|
// Simple http HEAD request for a file
|
|
conn.write_string('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(10 * time.second)
|
|
// Read all the data that is waiting
|
|
result := conn.read()?
|
|
// Cast to string and print result
|
|
println(result.bytestr()) |