Skip to content

Commit a105636

Browse files
committed
rollup merge of rust-lang#22015: alexcrichton/netv2
This commit is an implementation of [RFC 807][rfc] which adds a `std::net` module for basic neworking based on top of `std::io`. This module serves as a replacement for the `std::old_io::net` module and networking primitives in `old_io`. [rfc]: fillmein The major focus of this redesign is to cut back on the level of abstraction to the point that each of the networking types is just a bare socket. To this end functionality such as timeouts and cloning has been removed (although cloning can be done through `duplicate`, it may just yield an error). With this `net` module comes a new implementation of `SocketAddr` and `IpAddr`. This work is entirely based on rust-lang#20785 and the only changes were to alter the in-memory representation to match the `libc`-expected variants and to move from public fields to accessors.
2 parents 315730f + 395709c commit a105636

File tree

18 files changed

+3214
-6
lines changed

18 files changed

+3214
-6
lines changed

src/libstd/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ pub mod ffi;
253253
pub mod old_io;
254254
pub mod io;
255255
pub mod fs;
256+
pub mod net;
256257
pub mod os;
257258
pub mod env;
258259
pub mod path;

0 commit comments

Comments
 (0)