summary refs log tree commit diff
path: root/src/libnative/io/net.rs
AgeCommit message (Expand)AuthorLines
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
2014-04-15Use the unsigned integer types for bitwise intrinsics.Huon Wilson-2/+2
2014-04-04Fix fallout from std::libc separationCorey Richardson-1/+1
2014-04-01auto merge of #13115 : huonw/rust/rand-errors, r=alexcrichtonbors-1/+1
2014-04-01std: migrate the errno -> IoError converter from libnative.Huon Wilson-1/+1
2014-03-31native: Switch field privacy as necessaryAlex Crichton-4/+4
2014-03-27Fix fallout of removing default boundsAlex Crichton-8/+8
2014-03-13io: Bind to shutdown() for TCP streamsAlex Crichton-0/+5
2014-02-27native: Improve windows file handlingAlex Crichton-12/+7
2014-02-24native: be more const correct with the FFI calls.Huon Wilson-1/+1
2014-02-21Changed NonCamelCaseTypes lint to warn by defaultmr.Shu-1/+3
2014-02-16std: Rename unstable::mutex::Mutex to StaticNativeMutex.Huon Wilson-2/+2
2014-02-16std: add an RAII unlocker to Mutex.Huon Wilson-2/+1
2014-02-09std: Move byteswap functions to memBrian Anderson-3/+2
2014-02-09std: Add init and uninit to mem. Replace direct intrinsic usageBrian Anderson-5/+5
2014-02-05Implement clone() for TCP/UDP/Unix socketsAlex Crichton-48/+82
2014-02-03Various bug fixes and rebase conflictsAlex Crichton-10/+9
2014-02-03extra: Re-add the Once primitve to extra::syncAlex Crichton-8/+14
2014-02-03native: Require all results are used and fix falloutAlex Crichton-2/+2
2014-01-27Set SO_REUSEADDR by default in libnative.xales-0/+11
2014-01-22libnative: Implement get_host_addresses.Luqman Aden-2/+2
2014-01-06Don't wait for a full buffer when reading TCPAlex Crichton-4/+4
2014-01-05Handle EINTR throughout libnativeAlex Crichton-18/+26
2014-01-01libnative: Use [from|to]_be16 instead of bswap16Carl-Anton Ingmarsson-6/+2
2013-12-31auto merge of #11187 : alexcrichton/rust/once, r=brsonbors-9/+4