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

6 lines
106 B
V
Raw Normal View History

import net
2021-02-23 20:43:44 +03:00
conn := net.dial_tcp('google.com:80') ?
peer_addr := conn.peer_addr() ?
println('$peer_addr')