summary refs log tree commit diff
path: root/src/libstd/io/net/udp.rs
AgeCommit message (Expand)AuthorLines
2014-10-07Put slicing syntax behind a feature gate.Nick Cameron-15/+18
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-02Revert "Put slicing syntax behind a feature gate."Aaron Turon-18/+15
2014-10-02Put slicing syntax behind a feature gate.Nick Cameron-15/+18
2014-10-02Use slice syntax instead of slice_to, etc.Nick Cameron-1/+1
2014-10-01Remove iotest macroAaron Turon-25/+41
2014-09-27auto merge of #17506 : sfackler/rust/cfg-attr, r=alexcrichtonbors-1/+1
2014-09-25Ignore two I/O tests that are failing on the win32 botBrian Anderson-0/+1
2014-09-23Deprecate `#[ignore(cfg(...))]`Steven Fackler-1/+1
2014-09-16Fallout from renamingAaron Turon-1/+1
2014-07-13Stabilization for `owned` (now `boxed`) and `cell`Aaron Turon-1/+1
2014-07-03Rename set_broadast() to set_broadcast().Joseph Crail-1/+7
2014-07-02Add `recvfrom` and `sendto`.OGINO Masanori-0/+13
2014-07-02Rename recvfrom -> recv_from, sendto -> send_to.OGINO Masanori-34/+34
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-1/+1
2014-06-15Register new snapshotsAlex Crichton-1/+1
2014-06-06std: Deal with fallout of rtio changesAlex Crichton-11/+27
2014-05-15Updates with core::fmt changesAlex Crichton-2/+0
2014-05-11core: Remove the cast moduleAlex Crichton-0/+1
2014-05-08std: Mark timeout methods experimentalAlex Crichton-0/+3
2014-05-07std: Add I/O timeouts to networking objectsAlex Crichton-0/+74
2014-05-07core: Add unwrap()/unwrap_err() methods to ResultAlex Crichton-0/+2
2014-05-07auto merge of #13958 : pcwalton/rust/detilde, r=pcwaltonbors-1/+2
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-1/+2
2014-05-06auto merge of #13754 : alexcrichton/rust/net-experimental, r=brsonbors-1/+47
2014-05-02Replace most ~exprs with 'box'. #11779Brian Anderson-4/+4
2014-04-26std: Add experimental networking methodsAlex Crichton-1/+47
2014-04-14Use new attribute syntax in python files in src/etc too (#13478)Manish Goregaokar-1/+1
2014-04-10std: Make std::comm return types consistentAlex Crichton-2/+2
2014-03-31std: Switch field privacy as necessaryAlex Crichton-3/+3
2014-03-27Fix fallout of removing default boundsAlex Crichton-2/+3
2014-03-25std: Touch various I/O documentation blocksAlex Crichton-2/+30
2014-03-25libstd: Document the following modules:Patrick Walton-9/+43
2014-03-13std: Rename Chan/Port types and constructorAlex Crichton-46/+46
2014-03-04Rename struct fields with uppercase characters in their names to use lowercasePalmer Cox-4/+4
2014-03-04Rename all variables that have uppercase characters in their names to use onl...Palmer Cox-2/+2
2014-02-28std: Improve some I/O documentationAlex Crichton-0/+2
2014-02-11Test fixes and rebase conflictsAlex Crichton-2/+2
2014-02-11io -- introduce local to avoid conflicting borrowNiko Matsakis-1/+2
2014-02-05Make a double-write UDP test more robustAlex Crichton-7/+10
2014-02-05Implement clone() for TCP/UDP/Unix socketsAlex Crichton-0/+117
2014-02-03std: Fix tests with io_error usageAlex Crichton-40/+35
2014-02-03std: Remove io::io_errorAlex Crichton-35/+14
2014-01-29Removing do keyword from libstd and librustcScott Lawrence-8/+8
2014-01-13std: Ignore bind error tests on android. #11530Brian Anderson-1/+2
2014-01-09Remove eof() from io::ReaderAlex Crichton-2/+0
2014-01-07stdtest: Fix all leaked trait importsAlex Crichton-2/+0
2014-01-05Fix some warningsCorey Richardson-2/+1
2013-12-31Implement native UDP I/OAlex Crichton-23/+25