no-std-net icon indicating copy to clipboard operation
no-std-net copied to clipboard

No examples

Open vi opened this issue 5 years ago • 1 comments

There should be something like a no_std TCP echo server example.

vi avatar Sep 02 '18 13:09 vi

This crate doesn't contain a pure Rust TCP implementation; it just contains the parts of std::net (mostly address types) that don't depend on the rest of std.

Without std, you don't have sockets, so you'd need to look elsewhere (e.g. https://github.com/m-labs/smoltcp) if you want to make a no_std TCP server.

jbg avatar Aug 29 '19 12:08 jbg