about summary refs log tree commit diff
path: root/library/std/src/sys/net/connection/xous/dns.rs
AgeCommit message (Collapse)AuthorLines
2025-09-19std: simplify host lookupjoboet-43/+2
2025-02-10Fix &&str and trailing commas in io::const_error!Thalia Archibald-1/+1
2025-02-02std: move network code into `sys`joboet-0/+128
As per #117276, this PR moves `sys_common::net` and the `sys::pal::net` into the newly created `sys::net` module. In order to support #135141, I've moved all the current network code into a separate `connection` module, future functions like `hostname` can live in separate modules. I'll probably do a follow-up PR and clean up some of the actual code, this is mostly just a reorganization.