Files @ 4a6883c04294
Branch filter:

Location: CSY/reowolf/std/std.internet.pdl - annotation

mh
Fix bug related to checking for closed port
#module std.internet

union Cmd {
    Send(u8[]),
    Receive,
    Finish,
    Shutdown,
}

primitive tcp_client(u8[] ip, u16 port, in<Cmd> cmds, out<u8[]> rx) {
    #builtin
}