1 2 3 4 5 6 7 8 9 10 11 12
#module std.internet union Cmd { Send(u8[]), Receive, Finish, Shutdown, } primitive tcp_client(u8[] ip, u16 port, in<Cmd> cmds, out<u8[]> rx) { #builtin }