This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package ovp | |
| import ( | |
| "context" | |
| "crypto/md5" | |
| "fmt" | |
| "net/http" | |
| "net/url" | |
| "strconv" | |
| "time" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use fmt; | |
| use net::udp; | |
| use net::ip; | |
| use strings; | |
| export fn main() void = { | |
| const listener = udp::listen(ip::LOCAL_V4, 8000)!; | |
| for (true) { | |
| let buf: [1024]u8 = [0...]; |
OlderNewer