本文簡要介紹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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。