summary refs log tree commit diff
path: root/src/libstd/net_tcp.rs
AgeCommit message (Expand)AuthorLines
2012-07-04convert doc-attributes to doc-comments using ./src/etc/sugarise-doc-comments....Gareth Daniel Smith-296/+284
2012-07-04Remove empty argument lists from do expressionsBen Striegel-6/+6
2012-07-03Change crust -> extern.Graydon Hoare-9/+9
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-1/+1
2012-07-03core: Eliminate some overloading of the name "future" in future.rsPatrick Walton-3/+3
2012-07-02std: Ignore a test that doesn't terminate on windowsBrian Anderson-0/+1
2012-07-02Merge remote-tracking branch 'brson/uv'Brian Anderson-534/+605
2012-07-01Convert to new closure syntaxBrian Anderson-29/+27
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-24/+24
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-22/+22
2012-06-29std: cleanups, post-rebaseJeff Olson-0/+1
2012-06-29std/rt: cleanup and adding sockaddr_in6 mapping for win32Jeff Olson-1/+2
2012-06-29std: fix errors from recent rebase and vec expr/type syntax updateJeff Olson-23/+21
2012-06-29std: addressing #2656 (ipv6 support in net::tcp)Jeff Olson-25/+43
2012-06-29std: whitespace/comment cleanJeff Olson-8/+3
2012-06-29std: net::ip::get_addr is working w/ happy path test. needs more.Jeff Olson-9/+7
2012-06-29WIP set aside unshiftJeff Olson-1/+3
2012-06-29std: getting uv_ip6_* utils working in uv::llJeff Olson-3/+1
2012-06-29std: adding uv::ll::ip4_name and refactored net::ip to use itJeff Olson-6/+14
2012-06-29core: str::as_slice is unneeded, yay! fixes std::net::tcp socket_buf testJeff Olson-7/+5
2012-06-29std: test impl for using tcp_socket_buf and its reader/writer impls. fails.Jeff Olson-5/+91
2012-06-29std: renaming impl for tcp_socket and reshuffle/cleanup for tcp_socket_bufJeff Olson-5/+3
2012-06-29std: finish impl of io::writer for tcp_socket_bufJeff Olson-4/+7
2012-06-29std: rework signature of tcp::write common impl to make io::writer possibleJeff Olson-1/+1
2012-06-29std: add buffered wrapper to tcp_socket + io::reader impl. no tests, yet.Jeff Olson-0/+106
2012-06-29std: doc and misc cleanup in net::tcpJeff Olson-21/+35
2012-06-29std: EADDRINUSE and EACCES err tests for tcp server + more cleanupJeff Olson-322/+278
2012-06-29std: factor main body of tcp::listen into reusable listen_commonJeff Olson-5/+19
2012-06-29std: some cleanup in net::tcp rename listen_to_conn->listenJeff Olson-29/+30
2012-06-29std: dump the tcp::new_listener server APIJeff Olson-202/+7
2012-06-29std: mod cleanup, impl/test for conn. refused err + mem leak fixJeff Olson-35/+100
2012-06-29std: import/export cleanup in net_tcpJeff Olson-41/+45
2012-06-26libstd: Work around some metadata infelicities that are causing problems in r...Patrick Walton-6/+7
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-24/+24
2012-06-25MergeTim Chevalier-8/+8
2012-06-22core: Name is_failure to is_err, is_success to is_okBrian Anderson-8/+8
2012-06-22Change resources to classes in libstd and rustcTim Chevalier-32/+41
2012-06-21Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.Graydon Hoare-21/+14
2012-06-04Machine types are different from int/uint, etc (Issue #2187)Eric Holk-4/+5
2012-05-25Get rid of many implicit copies as a preliminary to Issue #2448.Michael Sullivan-4/+4
2012-05-25std: Rename uv::hl to uv::iotask. Additional cleanupBrian Anderson-37/+39
2012-05-24std: FIXME's and cleanups for uvBrian Anderson-3/+11
2012-05-24remove dead assignmentsNiko Matsakis-2/+1
2012-05-22std: high-level libuv-leverage APIs now take a hl_loop as arg (tcp/timer)Jeff Olson-19/+33
2012-05-22std: more work on uv tests to endure valgrind's machinations against themJeff Olson-3/+3
2012-05-22std:: adding tcp::read fn as simple, blocking read operation, akin to writeJeff Olson-90/+219
2012-05-22std: adding tcp::write_future for non-block tcp writes, docs cleanupJeff Olson-44/+52
2012-05-22std: several minor cleanups wrt codereview.. see extended commentsJeff Olson-31/+26
2012-05-22std: more docs and some methods for types in net::tcpJeff Olson-4/+66
2012-05-22std: splitting out tcp server API + testsJeff Olson-100/+226