Files
netio1/af_default.c.v
T
2026-04-01 00:53:36 +03:00

11 lines
275 B
V

module netio
/*
Well defined address families. Must work on all platforms.
*/
pub const af_unspec = AddrFamily(u16(C.AF_UNSPEC))
pub const af_unix = AddrFamily(u16(C.AF_UNIX))
pub const af_inet = AddrFamily(u16(C.AF_INET))
pub const af_inet6 = AddrFamily(u16(C.AF_INET6))