Rename std::io::net::unix to std::io::net::pipe.
Renamed as we may support pipes for other platforms. Closes #12093 [breaking-change]
This commit is contained in:
parent
1f5ee97184
commit
04f4bb4290
@ -19,8 +19,7 @@
|
||||
pub mod tcp;
|
||||
pub mod udp;
|
||||
pub mod ip;
|
||||
// FIXME(#12093) - this should not be called unix
|
||||
pub mod unix;
|
||||
pub mod pipe;
|
||||
|
||||
fn to_rtio(ip: IpAddr) -> rtio::IpAddr {
|
||||
match ip {
|
||||
|
@ -46,7 +46,7 @@ impl UnixStream {
|
||||
///
|
||||
/// ```rust
|
||||
/// # #![allow(unused_must_use)]
|
||||
/// use std::io::net::unix::UnixStream;
|
||||
/// use std::io::net::pipe::UnixStream;
|
||||
///
|
||||
/// let server = Path::new("path/to/my/socket");
|
||||
/// let mut stream = UnixStream::connect(&server);
|
||||
@ -164,7 +164,7 @@ impl UnixListener {
|
||||
/// # fn main() {}
|
||||
/// # fn foo() {
|
||||
/// # #![allow(unused_must_use)]
|
||||
/// use std::io::net::unix::UnixListener;
|
||||
/// use std::io::net::pipe::UnixListener;
|
||||
/// use std::io::{Listener, Acceptor};
|
||||
///
|
||||
/// let server = Path::new("/path/to/my/socket");
|
@ -34,7 +34,7 @@ mod $name {
|
||||
use io::net::ip::*;
|
||||
use io::net::udp::*;
|
||||
#[cfg(unix)]
|
||||
use io::net::unix::*;
|
||||
use io::net::pipe::*;
|
||||
use io::timer::*;
|
||||
use io::process::*;
|
||||
use rt::running_on_valgrind;
|
||||
|
Loading…
Reference in New Issue
Block a user