diff options
| author | Sean Cross <sean@xobs.io> | 2023-11-07 12:32:04 +0800 |
|---|---|---|
| committer | Sean Cross <sean@xobs.io> | 2024-01-13 09:38:42 -0800 |
| commit | aa8acc2215f625db898c0f9feab3a1702f38a190 (patch) | |
| tree | 9d7402f2faa9968207abdb313b6a12e45413558c /library/std/src/sys/pal/xous/mod.rs | |
| parent | ef4f722835ccf11dd002606e3ad4adb342ea4435 (diff) | |
| download | rust-aa8acc2215f625db898c0f9feab3a1702f38a190.tar.gz rust-aa8acc2215f625db898c0f9feab3a1702f38a190.zip | |
xous: net: initial commit of network support
This is an initial commit of network support for Xous. On hardware, is backed by smoltcp running via a Xous server in a separate process space. This patch adds TCP and UDP client and server support as well as DNS resolution support using the dns Xous server. Signed-off-by: Sean Cross <sean@xobs.io>
Diffstat (limited to 'library/std/src/sys/pal/xous/mod.rs')
| -rw-r--r-- | library/std/src/sys/pal/xous/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/library/std/src/sys/pal/xous/mod.rs b/library/std/src/sys/pal/xous/mod.rs index aa96925d859..7c49fb88a4e 100644 --- a/library/std/src/sys/pal/xous/mod.rs +++ b/library/std/src/sys/pal/xous/mod.rs @@ -12,7 +12,6 @@ pub mod fs; #[path = "../unsupported/io.rs"] pub mod io; pub mod locks; -#[path = "../unsupported/net.rs"] pub mod net; pub mod os; #[path = "../unix/os_str.rs"] |
