about summary refs log tree commit diff
path: root/src/libstd/rt/rtio.rs
AgeCommit message (Collapse)AuthorLines
2013-08-16Moved the logic for a pausible idle callback into a new type - ↵toddaaro-5/+8
PausibleIdleCallback and placed the appropriate signatures in rtio and implementation into uvio.
2013-08-03Rename IpAddr -> SocketAddr, extract IpAddr from SocketAddrStepan Koltsov-8/+8
multicast functions now take IpAddr (without port), because they dont't need port. Uv* types renamed: * UvIpAddr -> UvSocketAddr * UvIpv4 -> UvIpv4SocketAddr * UvIpv6 -> UvIpv6SocketAddr "Socket address" is a common name for (ip-address, port) pair (e.g. in sockaddr_in struct).
2013-07-25libstd: Implement some missing udp methods.Luqman Aden-8/+8
2013-07-25libstd: Implement some missing tcp methods.Luqman Aden-6/+6
2013-07-25libstd: Implement {peer, socket}_name for new rt tcp & udp.Luqman Aden-2/+2
2013-07-22std: add RtioTimer and UvTimer impl atop rt::uvJeff Olson-0/+6
2013-07-19Changed methods on UDP sockets and TCP/UDP watchers to &mut self to reflect ↵Eric Reed-20/+20
that libuv may change the underlying handle.
2013-07-02converted TODOs into XXXsEric Reed-1/+0
2013-07-02IPv6 support for UDP and TCP.Eric Reed-3/+27
2013-06-19socket based UDP ioEric Reed-7/+7
2013-06-17Added a RtioUdpStream traitEric Reed-0/+7
2013-05-29Merge remote-tracking branch 'brson/io' into incomingBrian Anderson-0/+11
Conflicts: src/libstd/rt/sched.rs
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-0/+45
This only changes the directory names; it does not change the "real" metadata names.