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

x.net: new net module (#6130)

This commit is contained in:
Emily Hudson
2020-08-20 22:01:37 +01:00
committed by GitHub
parent 9b171b76e0
commit b88569c845
13 changed files with 2056 additions and 0 deletions

14
examples/net_raw_http.v Normal file
View File

@ -0,0 +1,14 @@
// Simple raw HTTP head request
import x.net as 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())