本文简要介绍rust语言中 std::os::unix::net::UnixStream.peek
的用法。
用法
pub fn peek(&self, buf: &mut [u8]) -> Result<usize>
从它所连接的远程地址接收套接字上的数据,而不从队列中删除该数据。成功时,返回查看的字节数。
连续调用返回相同的数据。这是通过将MSG_PEEK
作为标志传递给底层recv
系统调用来实现的。
例子
#![feature(unix_socket_peek)]
use std::os::unix::net::UnixStream;
fn main() -> std::io::Result<()> {
let socket = UnixStream::connect("/tmp/sock")?;
let mut buf = [0; 10];
let len = socket.peek(&mut buf).expect("peek failed");
Ok(())
}
相关用法
- Rust UnixStream.peer_addr用法及代码示例
- Rust UnixStream.peer_cred用法及代码示例
- Rust UnixStream.pair用法及代码示例
- Rust UnixStream.take_error用法及代码示例
- Rust UnixStream.read_timeout用法及代码示例
- Rust UnixStream.send_vectored_with_ancillary用法及代码示例
- Rust UnixStream.connect用法及代码示例
- Rust UnixStream.set_write_timeout用法及代码示例
- Rust UnixStream.local_addr用法及代码示例
- Rust UnixStream.recv_vectored_with_ancillary用法及代码示例
- Rust UnixStream.set_read_timeout用法及代码示例
- Rust UnixStream.shutdown用法及代码示例
- Rust UnixStream.set_nonblocking用法及代码示例
- Rust UnixStream.write_timeout用法及代码示例
- Rust UnixStream.connect_addr用法及代码示例
- Rust UnixStream.set_passcred用法及代码示例
- Rust UnixStream.try_clone用法及代码示例
- Rust UnixStream用法及代码示例
- Rust UnixListener.accept用法及代码示例
- Rust UnixListener.bind用法及代码示例
- Rust UnixDatagram.peek_from用法及代码示例
- Rust UnixDatagram.recv_from用法及代码示例
- Rust UnixListener.incoming用法及代码示例
- Rust UnixDatagram.take_error用法及代码示例
- Rust UnixDatagram.peek用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::os::unix::net::UnixStream.peek。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。