Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
a42c025
Add bootstrap support for android
malbarbo Apr 18, 2017
c49d090
Specify behavior of `write_all` for `ErrorKind::Interrupted` errors
tbu- Apr 21, 2017
e1afddc
Haiku: fix initial platform support
jessicah Apr 22, 2017
f8c6436
Step::replace_one should put a one, not a zero (Issue #41492)
scottmcm Apr 24, 2017
f852e3f
use the word 'length' in Vec::len's docs
steveklabnik Apr 24, 2017
e482529
Fix invalid module suggestion
GuillaumeGomez Dec 9, 2016
bd880bc
Add tests for module suggestions
GuillaumeGomez Jan 3, 2017
b10c044
Remove strip prefix
GuillaumeGomez Feb 25, 2017
0d63f13
Haiku: add missing cases of using LIBRARY_PATH
jessicah Apr 24, 2017
957d51a
Fix a copy-paste error in `Instant::sub_duration`
tbu- Apr 24, 2017
70e6739
Adds rust-windbg.cmd script
AndrewGaspar Feb 20, 2017
a765dca
Add internal accessor methods to io::{Chain, Take}.
SergioBenitez Apr 22, 2017
aab87e3
Add more_io_inner_methods feature to unstable book.
SergioBenitez Apr 22, 2017
76397ae
Reference tracking issue for more_io_inner_methods.
SergioBenitez Apr 24, 2017
c168d8b
Add cautions to io::get_mut method documentation.
SergioBenitez Apr 24, 2017
93d57d6
Pass `--format-version 1` to `cargo metadata`.
kennytm Apr 17, 2017
00dff0a
Support AddressSanitizer and ThreadSanitizer on x86_64-apple-darwin.
kennytm Apr 17, 2017
86747a9
Force link with an absolute rpath when using sanitizer on macOS.
kennytm Apr 20, 2017
3b33913
appveyor: Upgrade to gcc for mingw 6.3.0
alexcrichton Apr 20, 2017
ca96892
Clean up TcpStream example
steveklabnik Apr 25, 2017
dce33e9
Clarify the doc index
steveklabnik Apr 25, 2017
696df71
Clarify "side effect" in peek's docs
steveklabnik Apr 25, 2017
3f97b2a
Add ui tests
GuillaumeGomez Apr 24, 2017
164fd69
Do not check if libclang_rt.?san_*_dynamic.dylib is an unstable crate.
kennytm Apr 25, 2017
19b7272
Fix up vec guarnatee around capacity
steveklabnik Apr 25, 2017
c4db48c
Rollup merge of #39983 - AndrewGaspar:rust-windbg, r=brson
Apr 25, 2017
e7d78e7
Rollup merge of #41352 - kennytm:macos-sanitizers, r=alexcrichton
Apr 25, 2017
81e1281
Rollup merge of #41370 - malbarbo:android-bootstrap, r=alexcrichton
Apr 25, 2017
38fb097
Rollup merge of #41420 - alexcrichton:mingw-6.3.0, r=petrochenkov
Apr 25, 2017
2af895c
Rollup merge of #41442 - tbu-:pr_writeall_interrupted, r=aturon
Apr 25, 2017
f7ad2df
Rollup merge of #41456 - jessicah:haiku-support, r=alexcrichton
Apr 25, 2017
9e6641a
Rollup merge of #41463 - SergioBenitez:master, r=alexcrichton
Apr 25, 2017
adbca82
Rollup merge of #41493 - scottmcm:fix-step-replace, r=sfackler
Apr 25, 2017
7a910ad
Rollup merge of #41500 - steveklabnik:gh37866, r=frewsxcv
Apr 25, 2017
5f9eb73
Rollup merge of #41501 - GuillaumeGomez:invalid_module_location, r=js…
Apr 25, 2017
1eb4e5a
Rollup merge of #41518 - tbu-:pr_fix_cp_error, r=sfackler
Apr 25, 2017
f8b265e
Rollup merge of #41526 - steveklabnik:gh35950, r=GuillaumeGomez
Apr 25, 2017
f52af0b
Rollup merge of #41527 - steveklabnik:gh41285, r=frewsxcv
Apr 25, 2017
72dc0f0
Rollup merge of #41528 - steveklabnik:gh33269, r=frewsxcv
Apr 25, 2017
8ccf0e8
Rollup merge of #41535 - steveklabnik:gh37746, r=alexcrichton
Apr 25, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Clean up TcpStream example
Fixes #35950
  • Loading branch information
steveklabnik committed Apr 25, 2017
commit ca96892ebb2dfcf302c98a2869fe41f14adb4f39
11 changes: 5 additions & 6 deletions src/libstd/net/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ pub struct TcpStream(net_imp::TcpStream);
/// # Examples
///
/// ```no_run
/// # use std::io;
/// use std::net::{TcpListener, TcpStream};
///
/// let listener = TcpListener::bind("127.0.0.1:80").unwrap();
Expand All @@ -81,15 +82,13 @@ pub struct TcpStream(net_imp::TcpStream);
/// // ...
/// }
///
/// # fn process() -> io::Result<()> {
/// // accept connections and process them serially
/// for stream in listener.incoming() {
/// match stream {
/// Ok(stream) => {
/// handle_client(stream);
/// }
/// Err(e) => { /* connection failed */ }
/// }
/// handle_client(stream?);
/// }
/// # Ok(())
/// # }
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
pub struct TcpListener(net_imp::TcpListener);
Expand Down