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