Open en-v opened 3 years ago
@en-v You could use tinynet: https://github.com/alphahorizonio/tinynet
If tinynet is too big, you can implement basic networking pretty easily using raw syscalls.
Right now, Linux isn't a primary use case for TinyGo. However, we're working on getting the net package working eventually.
Hi there! I want to create an application for a Linux-based IP-camera with TinyGo but I found that TinyGo doesn't support the "net" package. How can I get access to TCP/UDP data-transmission with TinyGo? I have only two ideas (CGO and "netcat" piping) but it looks like crutches ((
UPD: the "netcat" piping is impossible because the "os/exec" package doesn't supported too.