2020-11-15 21:54:47 +01:00
|
|
|
import net
|
|
|
|
import io
|
2020-08-20 23:01:37 +02:00
|
|
|
|
2020-12-15 16:39:11 +01:00
|
|
|
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
|
2020-12-16 18:22:26 +01:00
|
|
|
result := io.read_all(reader: conn)?
|
2020-12-15 16:39:11 +01:00
|
|
|
// Cast to string and print result
|
|
|
|
println(result.bytestr())
|
|
|
|
}
|