about summary refs log tree commit diff
path: root/src/libstd/io/net/tcp.rs
AgeCommit message (Expand)AuthorLines
2014-10-01Remove iotest macroAaron Turon-83/+128
2014-09-23Deprecate `#[ignore(cfg(...))]`Steven Fackler-1/+1
2014-08-28auto merge of #16626 : ruud-v-a/rust/duration-reform, r=brsonbors-2/+2
2014-08-24native: clone/close_accept for win32 pipesAlex Crichton-2/+1
2014-08-24native: Implement clone/close_accept for unixAlex Crichton-0/+132
2014-08-21libstd: Limit Duration range to i64 milliseconds.Ruud van Asseldonk-7/+1
2014-08-20libstd: Refactor Duration.Ruud van Asseldonk-3/+9
2014-08-14auto merge of #16332 : brson/rust/slicestab, r=aturonbors-1/+1
2014-08-13std: Fix build errorsBrian Anderson-1/+1
2014-08-13std: Make connect_timeout return Err on zero durationBrian Anderson-4/+6
2014-08-13Fix various fallout from timer changesBrian Anderson-1/+2
2014-08-13std: connect_timeout requires a positive DurationBrian Anderson-8/+8
2014-08-13std: Make the TCP/UDP connect_timeout methods take DurationBrian Anderson-2/+9
2014-08-13std: Rename various slice traits for consistencyBrian Anderson-1/+1
2014-07-31Tweak error reporting in io::net::tcp testsKevin Ballard-4/+4
2014-07-23Remove kludgy imports from vec! macroBrian Anderson-0/+1
2014-07-13Stabilization for `owned` (now `boxed`) and `cell`Aaron Turon-1/+1
2014-07-08std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`.Richo Healey-45/+45
2014-06-29rustuv: Don't zero-out data on clonesAlex Crichton-0/+40
2014-06-27std::io: Use re-exported pathes in examples.OGINO Masanori-3/+3
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-4/+4
2014-06-15Register new snapshotsAlex Crichton-4/+4
2014-06-06libs: Fix miscellaneous fallout of librustrtAlex Crichton-1/+2
2014-06-06std: Deal with fallout of rtio changesAlex Crichton-20/+55
2014-05-22libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`.Patrick Walton-65/+67
2014-05-14Suppress a "unused variable" warning.OGINO Masanori-1/+1
2014-05-12Document a possible way in which connect_timout may change in the futureTom Lee-0/+3
2014-05-12Try to parse TcpStream::connect 'host' parameter as an IP.Tom Lee-1/+4
2014-05-12Easier interface for TCP ::connect and ::bind.Tom Lee-90/+256
2014-05-09auto merge of #14046 : alexcrichton/rust/ignore-a-test-on-freebsd, r=kballardbors-13/+18
2014-05-08std: Ignore a flaky test on freebsdAlex Crichton-13/+18
2014-05-08std: Mark timeout methods experimentalAlex Crichton-0/+3
2014-05-07std: Add I/O timeouts to networking objectsAlex Crichton-0/+178
2014-05-07std: Add close_{read,write}() methods to I/OAlex Crichton-3/+110
2014-05-07auto merge of #13958 : pcwalton/rust/detilde, r=pcwaltonbors-4/+5
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-4/+5
2014-04-26std: Add experimental networking methodsAlex Crichton-0/+23
2014-04-23std: Add support for an accept() timeoutAlex Crichton-1/+85
2014-04-19std: Add an experimental connect_timeout functionAlex Crichton-1/+16
2014-04-14Use new attribute syntax in python files in src/etc too (#13478)Manish Goregaokar-1/+1
2014-04-11Add more type signatures to the docs; tweak a few of them.Huon Wilson-9/+15
2014-04-06De-~[] Reader and WriterSteven Fackler-2/+2
2014-03-31std: Switch field privacy as necessaryAlex Crichton-5/+3
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-1/+1
2014-03-27Fix fallout of removing default boundsAlex Crichton-5/+6
2014-03-13auto merge of #12855 : alexcrichton/rust/shutdown, r=brsonbors-0/+18
2014-03-13io: Bind to shutdown() for TCP streamsAlex Crichton-0/+18
2014-03-13std: Rename Chan/Port types and constructorAlex Crichton-89/+48
2014-02-11Test fixes and rebase conflictsAlex Crichton-1/+1
2014-02-05Implement clone() for TCP/UDP/Unix socketsAlex Crichton-1/+180