aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Io/net/test.zig
AgeCommit message (Collapse)Author
2025-11-19std.Io.net: disable `listen on a unix socket, send bytes, receive bytes` on ↵Alex Rønne Petersen
Windows https://github.com/ziglang/zig/issues/25983
2025-11-13std.Io.net: fix off-by-one in HostName.expand0x4a61636f62
`HostName.expand` was including the null terminator in the slice passed to `HostName.init`, which caused `HostName.validate` to fail.
2025-10-29std.Io.net: skip testing netInterfaceNameResolve on WindowsAndrew Kelley
let's handle this in a follow-up change. implementation needs to use ConvertInterfaceNameToLuidW and the additional dependency on Iphlpapi.dll poses some challenges.
2025-10-29std.Io.Threaded: fix compilation failures on WindowsAndrew Kelley
2025-10-29fix miscellaneous compilation failuresAndrew Kelley
2025-10-29std.Io: implement SelectAndrew Kelley
and finish implementation of HostName.connect
2025-10-29std.Io.Threaded: implement netListenUnixAndrew Kelley
2025-10-29std.net: IPv6 parsing fixesAndrew Kelley
2025-10-29std.Io.net: fix parsing IPv4-mapped IPv6 addressesAndrew Kelley
2025-10-29std.Io: add unix domain sockets APIAndrew Kelley
note that "reuseaddr" does nothing for these
2025-10-29std: updating to std.Io interfaceAndrew Kelley
got the build runner compiling
2025-10-29WIP: hack away at std.Io return flightAndrew Kelley
2025-10-29WIP: hack at std.Io on a planeAndrew Kelley
2025-10-29WIP land the std.Io interfaceAndrew Kelley
fix std lib compilation errors caused by introducing std.Io