about summary refs log tree commit diff
path: root/src/libstd/net_ip.rs
AgeCommit message (Collapse)AuthorLines
2012-05-22std: FIXME stub net::ip::ip_addr::ipv6 variant...needs parse/format implJeff Olson-0/+4
still need implementation for parsing/output formatting and (perhaps?) representation (for now, i just followef the ipv4 variant's lead and am representing it as a tuple of 8x u16). parsing an ipv6 addr is way more complex than parsing an ipv4 addr, so i'm putting off an implementation here, for now. candidate solutions: - could use getaddrinfo() (exists on both POSIX and windows), but with incompatible fn signatures. - libuv has a way to parse an ipv6 string into a sockaddr_in6, but it also requires a port, so it's probably not aprop for ip_addr
2012-05-22std: export net::ip::format_addrJeff Olson-0/+1
2012-05-22std: pushing existing code in net.rs -> net_ip.rs and re-import/exportingJeff Olson-0/+74