当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust TcpStream.shutdown用法及代码示例


本文简要介绍rust语言中 std::net::TcpStream.shutdown 的用法。

用法

pub fn shutdown(&self, how: Shutdown) -> Result<()>

关闭此连接的读取、写入或两半。

此函数将导致指定部分上的所有未决和未来 I/O 立即返回适当的值(请参阅 Shutdown 的文档)。

特定于平台的行为

多次调用此函数可能会导致不同的行为,具体取决于操作系统。在 Linux 上,第二个调用将返回 Ok(()) ,但在 macOS 上,它将返回 ErrorKind::NotConnected 。这在未来可能会改变。

例子

use std::net::{Shutdown, TcpStream};

let stream = TcpStream::connect("127.0.0.1:8080")
                       .expect("Couldn't connect to the server...");
stream.shutdown(Shutdown::Both).expect("shutdown call failed");

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::net::TcpStream.shutdown。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。