about summary refs log tree commit diff
path: root/src/libstd/net_tcp.rs
AgeCommit message (Collapse)AuthorLines
2012-05-22std: change tcp_*_result to use result::result.. flatter!Jeff Olson-120/+168
2012-05-22std: no longer return uv::ll::err_data records from net::tcpJeff Olson-12/+27
they're changed into a net::tcp::tcp_err_data record, for now. once the scope of possible tcp errors, from libuv, is established ill create an err type for each one and return those where they might occur
2012-05-22std: impl for high-level tcp client/request workflowJeff Olson-25/+150
2012-05-22std: impl of net::tcp::write and make net::tcp::tcp_socket a resourceJeff Olson-18/+126
2012-05-22std: impl for net::tcp::connectJeff Olson-11/+202
2012-05-22initial stab at API for std::net::tcpJeff Olson-0/+59