Files @ c2e3074a729b
Branch filter:

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

mh
Implement byte string, TCP socket, HTTP request test. Fix escape character parsing. Refactor component code
#module std.internet

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

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