本文简要介绍rust语言中 std::net::UdpSocket.set_nonblocking
的用法。
用法
pub fn set_nonblocking(&self, nonblocking: bool) -> Result<()>
将此 UDP 套接字移入或移出非阻塞模式。
这将导致 recv
、 recv_from
、 send
和 send_to
操作变为非阻塞,即立即从它们的调用中返回。如果 IO 操作成功,则返回Ok
,无需进一步操作。如果 IO 操作无法完成并需要重试,则返回类型为 io::ErrorKind::WouldBlock
的错误。
在 Unix 平台上,调用此方法对应于调用 fcntl
FIONBIO
。在 Windows 上调用此方法对应于调用 ioctlsocket
FIONBIO
。
例子
创建一个绑定到 127.0.0.1:7878
的 UDP 套接字并以非阻塞模式读取字节:
use std::io;
use std::net::UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:7878").unwrap();
socket.set_nonblocking(true).unwrap();
let mut buf = [0; 10];
let (num_bytes_read, _) = loop {
match socket.recv_from(&mut buf) {
Ok(n) => break n,
Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
// wait until network socket is ready, typically implemented
// via platform-specific APIs such as epoll or IOCP
wait_for_fd();
}
Err(e) => panic!("encountered IO error: {}", e),
}
};
println!("bytes: {:?}", &buf[..num_bytes_read]);
相关用法
- Rust UdpSocket.set_multicast_loop_v6用法及代码示例
- Rust UdpSocket.set_write_timeout用法及代码示例
- Rust UdpSocket.set_ttl用法及代码示例
- Rust UdpSocket.set_broadcast用法及代码示例
- Rust UdpSocket.set_multicast_loop_v4用法及代码示例
- Rust UdpSocket.set_read_timeout用法及代码示例
- Rust UdpSocket.set_multicast_ttl_v4用法及代码示例
- Rust UdpSocket.send用法及代码示例
- Rust UdpSocket.send_to用法及代码示例
- Rust UdpSocket.ttl用法及代码示例
- Rust UdpSocket.peek用法及代码示例
- Rust UdpSocket.broadcast用法及代码示例
- Rust UdpSocket.peer_addr用法及代码示例
- Rust UdpSocket.try_clone用法及代码示例
- Rust UdpSocket.recv_from用法及代码示例
- Rust UdpSocket.bind用法及代码示例
- Rust UdpSocket.recv用法及代码示例
- Rust UdpSocket.write_timeout用法及代码示例
- Rust UdpSocket.connect用法及代码示例
- Rust UdpSocket.multicast_loop_v6用法及代码示例
- Rust UdpSocket.read_timeout用法及代码示例
- Rust UdpSocket.multicast_loop_v4用法及代码示例
- Rust UdpSocket.peek_from用法及代码示例
- Rust UdpSocket.multicast_ttl_v4用法及代码示例
- Rust UdpSocket.local_addr用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::net::UdpSocket.set_nonblocking。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。