about summary refs log tree commit diff
path: root/src/libcore/rt/io/net
AgeCommit message (Collapse)AuthorLines
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-492/+0
This only changes the directory names; it does not change the "real" metadata names.
2013-05-20core::rt: Convert unsafe_borrow_io to a Local implBrian Anderson-4/+7
2013-05-20core::rt: Remove local_sched moduleBrian Anderson-1/+1
2013-05-19Use assert_eq! rather than assert! where possibleCorey Richardson-1/+1
2013-05-15core::rt: Unignore a fixed TCP testBrian Anderson-1/+1
2013-05-15core::rt: Fix TCP test on macBrian Anderson-1/+2
2013-05-15core::rt: WarningsBrian Anderson-1/+1
2013-05-15core::rt: `read` raises `read_error`Brian Anderson-2/+2
2013-05-15core::rt: Error handling for TcpStream.readBrian Anderson-7/+82
2013-05-14core::rt: Ignore tcp test multiple_connect_interleaved_lazy_scheduleBrian Anderson-1/+1
Hangs on mac.
2013-05-14core::rt: Register stacks with valgrind. #6428Brian Anderson-1/+1
2013-05-14core::rt: Make TCP servers workBrian Anderson-3/+83
2013-05-14TidyBrian Anderson-3/+3
2013-05-14core::rt: Just a small fix to TcpStreamBrian Anderson-0/+26
2013-05-14core::rt: Fix the finalizer on UvTcpStream and UvTcpListenerBrian Anderson-13/+0
Eliminates a lot of calls to `close`
2013-05-14core::rt: Use unsafe pointers instead of transmuted regionsBrian Anderson-2/+2
2013-05-13core::rt: Clean up the interface to rtioBrian Anderson-11/+12
Make names that better match rt::io. Return error types.
2013-05-13core::rt: Begin implementing TcpStreamBrian Anderson-24/+140
This ended up touching a lot of code related to error handling.
2013-05-13core::rt: Remove Close traitBrian Anderson-12/+0
We will just use RAII for now.
2013-05-03add gitattributes and fix whitespace issuesDaniel Micay-3/+0
2013-04-24core: Warning policeBrian Anderson-5/+0
2013-04-22core::rt: Move the definition of Listener to rt::ioBrian Anderson-31/+0
2013-04-22core::rt: Make I/O constructors return Option instead of ResultBrian Anderson-6/+6
For consistency, for all I/O calls, inspecting the error can be done with the io_error condition.
2013-04-20core::rt: Listener constructors are called and return aBrian Anderson-3/+30
2013-04-19wipBrian Anderson-1/+1
2013-04-19core::rt: Rename Closeable to Close, Seekable to Seek, blocking to nativeBrian Anderson-3/+3
2013-04-19TidyBrian Anderson-1/+1
2013-04-19core::rt: Declare large parts of the I/O APIBrian Anderson-0/+227