- 2c31b45 mv std libs to library/ by mark · 4 years, 10 months ago[Renamed from src/libstd/net/addr.rs]
- dcd470f Auto merge of #73007 - yoshuawuyts:socketaddr-from-string-u16, r=sfackler by bors · 5 years ago
- 204c236 Add test for comparing SocketAddr with inferred right-hand side by David Tolnay · 5 years ago
- c45231c Revert heterogeneous SocketAddr PartialEq impls by David Tolnay · 5 years ago
- 2764e54 impl ToSocketAddrs for (String, u16) by Yoshua Wuyts · 5 years ago
- 06a97a0 Clarify comment message & MAX_LENGTH const by Nathan West · 5 years ago
- defbd84 Added fast-path, tests by Nathan West · 5 years ago
- 813ce7a `SocketAddr(V4|V6)?`::Display now correctly pads its content by Nathan West · 5 years ago
- d1bc8ada Fix tests by Hoe Hao Cheng · 5 years ago
- 716acff Remove heterogeneous ordering for SocketAddr by Hoe Hao Cheng · 5 years ago
- 27fc7e5 Implement PartialOrd and Ord for SocketAddr* by Hoe Hao Cheng · 5 years ago
- 3db6d1c For issue 53957: revise unit tests to focus on underlying bug of 23076. by Felix S. Klock II · 5 years ago
- 0ec1408 Don't convert Results to Options just for matching. by Matthias Krüger · 5 years ago
- f720469 Use matches macro in libcore and libstd by Igor Aleksanov · 5 years ago
- 3594d8b make htons const fn by Lzu Tao · 5 years ago
- 4436c9d Format libstd with rustfmt by David Tolnay · 5 years ago
- 6c1b447 Remove unneeded `fn main` blocks from docs by Lzu Tao · 6 years ago
- a34dae3 Rollup merge of #60511 - taiki-e:libstd-intra-doc, r=Dylan-DPC by Mazdak Farrokhzad · 6 years ago
- cc314b0 Remove bitrig support from rust by Marcel Hellwig · 6 years ago
- ccb9dac Fix intra-doc link resolution failure on re-exporting libstd by Taiki Endo · 6 years ago
- 379c380 libstd: deny(elided_lifetimes_in_paths) by Mazdak Farrokhzad · 6 years ago
- f229422 SGX target: fix std unit tests by Jethro Beekman · 6 years ago
- 93b6d9e libstd => 2018 by Taiki Endo · 6 years ago
- e3a8f7d Rollup merge of #58553 - scottmcm:more-ihle, r=Centril by kennytm · 6 years ago
- 3bea2ca Use more impl header lifetime elision by Scott McMurray · 6 years ago
- 99ed06e libs: doc comments by Alexander Regueiro · 6 years ago
- b87363e tests: doc comments by Alexander Regueiro · 6 years ago
- 2a66355 Remove licenses by Mark Rousskov · 6 years ago
- ee89c08 Various minor/cosmetic improvements to code by Alexander Regueiro · 6 years ago
- 22c4368 Refactor net::each_addr/lookup_host to forward error from resolve by Jethro Beekman · 6 years ago
- 4ced4f3 Add doc for impl From for Addr by Son · 7 years ago
- b539936 Remove the deprecated std::net::{lookup_host,LookupHost} by Josh Stone · 7 years ago
- efd0442 Add backticks by Phlosioneer · 7 years ago
- 1af952c Remove StdioRaw doc additions, add backticks by Phlosioneer · 7 years ago
- e63b1a0 Remove "and may change between Rust releases" by Phlosioneer · 7 years ago
- 908328f Document when types have OS-dependent sizes by Phlosioneer · 7 years ago
- 908aa38 Deprecate std::net::lookup_host by Steven Fackler · 7 years ago
- 0789a1d Fix a typo in ToSocketAddrs documentation by Alexey Orlenko · 7 years ago
- 396fc11 Fix typo in doc `ToSocketAddrs` example. by Corey Farwell · 8 years ago
- 10bd39e Rewrite `std::net::ToSocketAddrs` doc examples. by Corey Farwell · 8 years ago
- b8cbc5d Addressed requested changes for PR #40838 by lukaramu · 8 years ago
- 1a9c8ba Added examples to std::net::{SocketAddr, SocketAddrV4, SocketAddrV6} docs by lukaramu · 8 years ago
- 6f0c742 Expanded and added links to std::net::{SocketAddr,SocketAddrV4,SocketAddrV6} docs by lukaramu · 8 years ago
- be713fa Removed link in std::net::ToSocketAddr's summary sentence by lukaramu · 8 years ago
- df5830a Added links throughout std::net::ToSocketAddrs' documentation by lukaramu · 8 years ago
- cd603e4 add From<(I, u16)> for SocketAddr where I: Into<IpAddr> by Sean McArthur · 8 years ago
- 671b1c1 std: Stabilize APIs for the 1.16.0 release by Alex Crichton · 8 years ago
- a5f2f36 impl ToSocketAddrs for String by Brian Campbell · 8 years ago
- 2d365c6 Impl From<inner> for IpAddr and SocketAddr. by Yamakaky · 8 years ago
- a809749 Rollup merge of #37962 - GuillaumeGomez:socket-v6, r=frewsxcv by Seo Sanghyeon · 8 years ago
- 559141c Add missing examples to SocketAddrV6 by Guillaume Gomez · 8 years ago
- ff433da Add missing examples for SocketAddrV4 by Guillaume Gomez · 8 years ago
- bf78ef3 Add missing examples in SocketAddr by Guillaume Gomez · 9 years ago
- 9cb0136 Auto merge of #36762 - achanda:sockaddr_type, r=alexcrichton by bors · 9 years ago
- d9e6430 Add two functions to check type of SockAddr by Abhishek Chanda · 9 years ago
- 096670c Ignore various entire test modules on emscripten by Brian Anderson · 9 years ago
- 183b2dd Ignore entire test modules on emscripten instead of individual tests by Brian Anderson · 9 years ago
- 9c4a01e Ignore lots and lots of std tests on emscripten by Brian Anderson · 9 years ago
- 9a2c878 Use `#[prelude_import]` in `libstd`. by Jeffrey Seyfried · 9 years ago
- 6aa0182 Update documentation to reflect ignoring of unknown addresses by Tobias Bucher · 9 years ago
- d6237ce Ignore unknown address types when looking up hosts by Tobias Bucher · 9 years ago
- 552eda7 std: Stabilize APIs for the 1.9 release by Alex Crichton · 9 years ago
- 98f0a91 Auto merge of #32454 - eddyb:rollup, r=eddyb by bors · 9 years ago
- 0f02309 try! -> ? by Jorge Aparicio · 9 years ago
- 88506ce std: Store flowinfo/scope_id in host byte order by Alex Crichton · 9 years ago
- ac02f9c Rollup merge of #31842 - dileepbapat:master, r=alexcrichton by Manish Goregaokar · 9 years ago
- fbfe70e #31820 - Utilize `if..let` instead of single `match` branch by dileepb · 9 years ago
- a92ee0f Register new snapshots by Aaron Turon · 9 years ago
- 3de820e Add SocketAddrV6::set_flowinfo and set_scope_id by Simon Sapin · 9 years ago
- 5a249ab Add `SocketAddr{,V4,V6}::set_ip`. by Simon Sapin · 9 years ago
- cd01366 Add `SocketAddr{,V4,V6}::set_port`. by Simon Sapin · 9 years ago
- 2067c57 Revert deprecation of IpAddr, stabilizing for 1.7 by Aaron Turon · 9 years ago
- 7ea0abf Implement ToSocketAddrs for &[SocketAddr] by Steven Fackler · 9 years ago
- f09bcc1 Fix SocketAddrV6::flowinfo docs by Simon Sapin · 9 years ago
- 8ea7b88 Require stability annotations on fields of tuple variants by Vadim Petrochenkov · 9 years ago
- e27cbef Fix warnings when compiling stdlib with --test by Florian Hahn · 9 years ago
- 464cdff std: Stabilize APIs for the 1.6 release by Alex Crichton · 9 years ago
- 7499558 Auto merge of #30092 - semarie:to_socket_addr_str_bad, r=alexcrichton by bors · 9 years ago
- 6a7733a disable net::addr::to_socket_addr_str_bad test under openbsd by Sébastien Marie · 9 years ago
- 7e2ffc7 Add missing annotations and some tests by Vadim Petrochenkov · 10 years ago
- 3d28b8b std: Migrate to the new libc by Alex Crichton · 10 years ago
- 5f62562 std: Add issues to all unstable features by Alex Crichton · 10 years ago
- 2baeabd Improve libstd/net/addr.rs documentation. by Nick Hamann · 10 years ago
- 63e5848 Move IP related tests to ip.rs by Abhishek Chanda · 10 years ago
- f60f4b7 Fix check for globally routable IPv4 address by Abhishek Chanda · 10 years ago
- c897ac0 Auto merge of #24177 - alexcrichton:rustdoc, r=aturon by bors · 10 years ago
- ba40231 std: Deny most warnings in doctests by Alex Crichton · 10 years ago
- 5c3aa01 disabling a test that is failing on bitrig. by Dave Huseby · 10 years ago
- e98dce3 std: Changing the meaning of the count to splitn by Alex Crichton · 10 years ago
- 72f5973 Test fixes and rebase conflicts, round 3 by Alex Crichton · 10 years ago
- ac77392 std: Stabilize last bits of io::Error by Alex Crichton · 10 years ago
- c0dd239 Add `std::net::lookup_addr` for reverse DNS lookup by Murarth · 10 years ago
- 8165bc1 std: Add net::IpAddr, destabilize lookup_host by Alex Crichton · 10 years ago
- e901910 Add #![feature] attributes to doctests by Brian Anderson · 10 years ago
- b4a1e59 don't use Result::ok just to be able to use unwrap/unwrap_or by Oliver Schneider · 10 years ago
- f798674 std: Stabilize the `net` module by Alex Crichton · 10 years ago
- aed31ee Test fixes and rebase conflicts by Alex Crichton · 10 years ago
- 3c2c516 rollup merge of #23097: alexcrichton/issue-23076 by Alex Crichton · 10 years ago
- 65b4eda5 std: Fix peeling ports from addresses by Alex Crichton · 10 years ago
- e646708 Remove integer suffixes where the types in compiled code are identical. by Eduard Burtescu · 10 years ago