| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-03-31 | libstd: deny(elided_lifetimes_in_paths) | Mazdak Farrokhzad | -1/+1 | |
| 2019-03-26 | Auto merge of #59136 - jethrogb:jb/sgx-std-test, r=sanxiyn | bors | -1/+1 | |
| SGX target: fix std unit tests This fixes some tests and some code in the SGX sys implementation to make the `std` unit test suite pass. #59009 must be merged first. | ||||
| 2019-03-25 | SGX target: fix std unit tests | Jethro Beekman | -1/+1 | |
| 2019-03-16 | Fix test names regarding ip version | Linus Unnebäck | -2/+2 | |
| 2019-03-16 | Add test for UdpSocket peer_addr | Linus Unnebäck | -0/+10 | |
| 2019-03-16 | Document UdpSocket peer_addr NotConnected error | Linus Unnebäck | -0/+13 | |
| 2019-03-16 | Mark UdpSocket peer_addr unstable w/ tracking issue | Linus Unnebäck | -1/+2 | |
| 2019-03-16 | Add peer_addr function to UdpSocket | Linus Unnebäck | -0/+17 | |
| 2019-02-28 | libstd => 2018 | Taiki Endo | -13/+13 | |
| 2019-02-10 | libs: doc comments | Alexander Regueiro | -6/+6 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 | |
| 2018-12-07 | Various minor/cosmetic improvements to code | Alexander Regueiro | -1/+1 | |
| 2018-11-30 | Deal with EINTR in net timeout tests | Josh Stone | -4/+16 | |
| We've seen sporadic QE failures in the timeout tests on this assertion: assert!(kind == ErrorKind::WouldBlock || kind == ErrorKind::TimedOut); So there's an error, but not either of the expected kinds. Adding a format to show the kind revealed `ErrorKind::Interrupted` (`EINTR`). For the cases that were using `read`, we can just use `read_exact` to keep trying after interruption. For those using `recv_from`, we have to manually loop until we get a non-interrupted result. | ||||
| 2018-07-11 | Add missing dyn in tests | ljedrz | -1/+1 | |
| 2018-03-28 | Remove hidden `foo` functions from doc examples; use `Termination` trait. | Corey Farwell | -14/+14 | |
| Fixes https://github.com/rust-lang/rust/issues/49233. | ||||
| 2018-03-02 | Rollup merge of #48328 - frewsxcv:frewsxcv-clarify-error-zero-duration, ↵ | Manish Goregaokar | -4/+34 | |
| r=sfackler Fixes #47311. r? @nrc | ||||
| 2018-02-25 | Rollup merge of #48330 - frewsxcv:frewsxcv-tests-zero-duration, r=sfackler | kennytm | -0/+17 | |
| Add tests ensuring zero-Duration timeouts result in errors; fix Redox issues. Part of #48311 | ||||
| 2018-02-24 | Clarify "It is an error to..." wording for zero-duration behaviors. | Corey Farwell | -4/+34 | |
| Documentation fix side of https://github.com/rust-lang/rust/issues/48311. | ||||
| 2018-02-18 | Add tests ensuring zero-Duration timeouts result in errors. | Corey Farwell | -0/+17 | |
| Part of https://github.com/rust-lang/rust/issues/48311 | ||||
| 2018-02-17 | Unify 'Platform-specific behavior' documentation headings. | Corey Farwell | -2/+2 | |
| 2018-01-11 | Make tests build on CloudABI. | Ed Schouten | -1/+1 | |
| There are some tests that need to be disabled on CloudABI specifically, due to the fact that the shims cannot be built in combination with unix::ext or windows::ext. Also improve the scoping of some imports to suppress compiler warnings. | ||||
| 2017-10-26 | Improve docs for UdpSocket::set_nonblocking. | Corey Farwell | -4/+33 | |
| Closes https://github.com/rust-lang/rust/issues/44050. | ||||
| 2017-10-20 | Fix most rendering warnings from switching to CommonMark | steveklabnik | -1/+1 | |
| 2017-09-14 | Rollup merge of #44388 - tbu-:pr_doc_udp_connect_multiple, r=frewsxcv | Corey Farwell | -16/+9 | |
| Clarify the behavior of UDP sockets wrt. multiple addresses in `connect` CC @frewsxcv #22569 #44209 | ||||
| 2017-09-12 | rustdoc: extend UdpSocket API doc (#657) | Frank Rehberger | -13/+41 | |
| rustdoc: type-fixes | ||||
| 2017-09-07 | Clarify the behavior of UDP sockets wrt. multiple addresses in `connect` | Tobias Bucher | -16/+9 | |
| 2017-08-31 | Expand docs of multi-address behavior of some UDP/TCP APIs. | Corey Farwell | -2/+48 | |
| Fixes https://github.com/rust-lang/rust/issues/22569. | ||||
| 2017-08-12 | Fix some typos | Bastien Orivel | -1/+1 | |
| 2017-05-20 | Stabilize library features for 1.18.0 | Steven Fackler | -4/+2 | |
| Closes #38863 Closes #38980 Closes #38903 Closes #36648 | ||||
| 2017-03-26 | Expanded top-level docs for std::net{TcpListener,TcpStream,UdpSocket} | lukaramu | -5/+25 | |
| Part of #29363 | ||||
| 2017-03-13 | Remove function invokation parens from documentation links. | Corey Farwell | -10/+10 | |
| This was never established as a convention we should follow in the 'More API Documentation Conventions' RFC: https://github.com/rust-lang/rfcs/blob/master/text/1574-more-api-documentation-conventions.md | ||||
| 2017-02-05 | Rollup merge of #38983 - APTy:udp-peek, r=aturon | Corey Farwell | -0/+97 | |
| Add peek APIs to std::net Adds "peek" APIs to `std::net` sockets, including: - `UdpSocket.peek()` - `UdpSocket.peek_from()` - `TcpStream.peek()` These methods enable socket reads without side-effects. That is, repeated calls to `peek()` return identical data. This is accomplished by providing the POSIX flag `MSG_PEEK` to the underlying socket read operations. This also moves the current implementation of `recv_from` out of the platform-independent `sys_common` and into respective `sys/windows` and `sys/unix` implementations. This allows for more platform-dependent implementations where necessary. Fixes #38980 | ||||
| 2017-02-04 | libstd/net: Add `peek` APIs to UdpSocket and TcpStream | Tyler Julian | -0/+97 | |
| These methods enable socket reads without side-effects. That is, repeated calls to peek() return identical data. This is accomplished by providing the POSIX flag MSG_PEEK to the underlying socket read operations. This also moves the current implementation of recv_from out of the platform-independent sys_common and into respective sys/windows and sys/unix implementations. This allows for more platform-dependent implementations. | ||||
| 2017-01-22 | libstd: replace all `try!` with `?` in documentation examples | Utkarsh Kukreti | -3/+3 | |
| See #38644. | ||||
| 2017-01-10 | std/net/udp: Improve set_nonblocking test | Tyler Julian | -4/+16 | |
| 2016-12-12 | Rollup merge of #38067 - GuillaumeGomez:udp-doc, r=frewsxcv,nagisa | Corey Farwell | -1/+58 | |
| Add more examples to UpdSocket r? @frewsxcv | ||||
| 2016-12-04 | Add more examples to UpdSocket | Guillaume Gomez | -1/+58 | |
| 2016-11-26 | Add part of missing UdpSocket's urls and examples | Guillaume Gomez | -11/+215 | |
| 2016-11-09 | Clarify that send_to might return an error in certain cases | Abhishek Chanda | -0/+3 | |
| Closes #34202 | ||||
| 2016-09-30 | Ignore entire test modules on emscripten instead of individual tests | Brian Anderson | -14/+1 | |
| 2016-09-30 | Ignore lots and lots of std tests on emscripten | Brian Anderson | -0/+13 | |
| 2016-08-24 | Use `#[prelude_import]` in `libstd`. | Jeffrey Seyfried | -2/+0 | |
| 2016-04-25 | Fix reference to TCP in UDP docs | Steven Fackler | -1/+1 | |
| Closees #33195 | ||||
| 2016-04-20 | Remove IPV6_V6ONLY functionality | Steven Fackler | -23/+0 | |
| These settings can only be adjusted before bind time, which doesn't make sense in the current set of functionality. These methods are stable, but haven't hit a stable release yet. Closes #33052 [breaking-change] | ||||
| 2016-03-27 | Extend linkchecker with anchor checking | mitaa | -8/+8 | |
| This adds checks to ensure that: * link anchors refer to existing id's on the target page * id's are unique within an html document * page redirects are valid | ||||
| 2016-03-22 | try! -> ? | Jorge Aparicio | -1/+1 | |
| Automated conversion using the untry tool [1] and the following command: ``` $ find -name '*.rs' -type f | xargs untry ``` at the root of the Rust repo. [1]: https://github.com/japaric/untry | ||||
| 2016-02-28 | Add UDP functionality from net2 | Steven Fackler | -1/+252 | |
| 2015-12-30 | Rollup merge of #30511 - defyrlt:issue_30507, r=steveklabnik | Steve Klabnik | -10/+11 | |
| Resolves #30507 r? @steveklabnik | ||||
| 2015-12-29 | Fix warnings when compiling stdlib with --test | Florian Hahn | -13/+12 | |
| 2015-12-22 | Removed usage of `drop` from `std::net::UdpSocket` docs | defyrlt | -10/+11 | |
| Resolves #30507 | ||||
