blob: e754f61cdb20119ffde55e95d1423ca6ff30babf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Simple raw HTTP head request
import net
import time
import io
fn main() {
// Make a new connection
mut conn := net.dial_tcp('google.com:80') ?
// Simple http HEAD request for a file
conn.write_string('GET /index.html HTTP/1.0\r\n\r\n') ?
// Wrap in a buffered reader
mut r := io.new_buffered_reader(reader: conn)
for {
l := r.read_line() or { break }
println('$l')
// Make it nice and obvious that we are doing this line by line
time.sleep(100 * time.millisecond)
}
}
|