about summary refs log tree commit diff
path: root/src/libnative/io/net.rs
AgeCommit message (Expand)AuthorLines
2014-10-07Use slice syntax instead of slice_to, etc.Nick Cameron-1/+1
2014-10-02Revert "Use slice syntax instead of slice_to, etc."Aaron Turon-1/+1
2014-10-02Use slice syntax instead of slice_to, etc.Nick Cameron-1/+1
2014-09-30Fix libnativeSteven Fackler-6/+6
2014-09-24liblibc and libnative: send() should use const buffers.NODA, Kai-1/+1
2014-09-19Add enum variants to the type namespaceNick Cameron-4/+4
2014-09-16Fallout from renamingAaron Turon-2/+2
2014-09-09rollup merge of #17020 : nodakai/libnative-c_intAlex Crichton-6/+3
2014-09-08libnative/io: generic retry() for Unix 64 bit read/write().NODA, Kai-6/+3
2014-09-07auto merge of #16942 : alexcrichton/rust/remove-net-assert, r=brsonbors-1/+1
2014-09-03Fix spelling errors and capitalization.Joseph Crail-3/+3
2014-09-02native: Remove a bogus assert in net::readAlex Crichton-1/+1
2014-08-24native: clone/close_accept for win32 pipesAlex Crichton-12/+23
2014-08-24native: Add some documentation for acceptAlex Crichton-0/+34
2014-08-24native: TCP close/close_accept for windowsAlex Crichton-74/+181
2014-08-24native: Implement clone/close_accept for unixAlex Crichton-20/+73
2014-08-18libsyntax: Remove the `use foo = bar` syntax from the language in favorPatrick Walton-2/+2
2014-08-04Change everything returning `libc::sockaddr_storage` to use an &mut out-ptr i...Andrew Poelstra-17/+18
2014-08-01Fix misspelled comments.Joseph Crail-1/+1
2014-07-29Port Rust to DragonFlyBSDMichael Neumann-1/+3
2014-07-24libsyntax: Remove `~self` and `mut ~self` from the language.Patrick Walton-1/+2
2014-07-03Fix spelling errors.Joseph Crail-1/+1
2014-07-02Rename recvfrom -> recv_from, sendto -> send_to.OGINO Masanori-2/+2
2014-06-28Rename all raw pointers as necessaryAlex Crichton-9/+9
2014-06-18Shorten endian conversion method namesBrendan Zabarauskas-4/+4
2014-06-18Merge the Bitwise and ByteOrder traits into the Int traitBrendan Zabarauskas-3/+2
2014-06-18Use ByteOrder methods instead of free-standing functionsBrendan Zabarauskas-4/+5
2014-06-16auto merge of #14900 : alexcrichton/rust/snapshots, r=huonwbors-8/+8
2014-06-16auto merge of #14715 : vhbit/rust/ios-pr2, r=alexcrichtonbors-1/+2
2014-06-15Register new snapshotsAlex Crichton-8/+8
2014-06-13Fix all violations of stronger guarantees for mutable borrowsCameron Zwarich-3/+2
2014-06-12Basic iOS supportValerii Hiora-1/+2
2014-06-08Remove the dead code identified by the new lintJakub Wieczorek-1/+4
2014-06-06libs: Fix miscellaneous fallout of librustrtAlex Crichton-2/+4
2014-06-06native: Deal with the rtio changesAlex Crichton-50/+51
2014-05-28fix MIPS targetJyun-Yan You-9/+10
2014-05-21auto merge of #14301 : alexcrichton/rust/remove-unsafe-arc, r=brsonbors-15/+9
2014-05-21std,green: Mark some queue types as NoShareAlex Crichton-2/+2
2014-05-20core: Stabilize the mem moduleAlex Crichton-6/+6
2014-05-19native: Remove UnsafeArc in favor of just ArcAlex Crichton-13/+7
2014-05-11core: Remove the cast moduleAlex Crichton-5/+4
2014-05-09Register new snapshotsAlex Crichton-1/+1
2014-05-07native: Implement timeouts for windows pipesAlex Crichton-2/+0
2014-05-07native: Implement timeouts for unix networkingAlex Crichton-104/+353
2014-05-07std: Add close_{read,write}() methods to I/OAlex Crichton-3/+4
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-8/+14
2014-05-02Replace most ~exprs with 'box'. #11779Brian Anderson-4/+4
2014-04-24std: Add timeouts to unix connect/acceptAlex Crichton-122/+6
2014-04-23std: Add support for an accept() timeoutAlex Crichton-27/+56
2014-04-19std: Add an experimental connect_timeout functionAlex Crichton-37/+131