本文简要介绍rust语言中 std::net::TcpStream.peek
的用法。
用法
pub fn peek(&self, buf: &mut [u8]) -> Result<usize>
从它所连接的远程地址接收套接字上的数据,而不从队列中删除该数据。成功时,返回查看的字节数。
连续调用返回相同的数据。这是通过将MSG_PEEK
作为标志传递给底层recv
系统调用来实现的。
例子
use std::net::TcpStream;
let stream = TcpStream::connect("127.0.0.1:8000")
.expect("couldn't bind to address");
let mut buf = [0; 10];
let len = stream.peek(&mut buf).expect("peek failed");
相关用法
- Rust TcpStream.peer_addr用法及代码示例
- Rust TcpStream.local_addr用法及代码示例
- Rust TcpStream.set_nodelay用法及代码示例
- Rust TcpStream.nodelay用法及代码示例
- Rust TcpStream.take_error用法及代码示例
- Rust TcpStream.write_timeout用法及代码示例
- Rust TcpStream.set_write_timeout用法及代码示例
- Rust TcpStream.set_nonblocking用法及代码示例
- Rust TcpStream.set_linger用法及代码示例
- Rust TcpStream.linger用法及代码示例
- Rust TcpStream.connect用法及代码示例
- Rust TcpStream.ttl用法及代码示例
- Rust TcpStream.shutdown用法及代码示例
- Rust TcpStream.set_ttl用法及代码示例
- Rust TcpStream.try_clone用法及代码示例
- Rust TcpStream.read_timeout用法及代码示例
- Rust TcpStream.set_read_timeout用法及代码示例
- Rust TcpStream用法及代码示例
- Rust TcpListener.take_error用法及代码示例
- Rust TcpListener.into_incoming用法及代码示例
- Rust TcpListener.accept用法及代码示例
- Rust TcpListener.local_addr用法及代码示例
- Rust TcpListener.ttl用法及代码示例
- Rust TcpListener.set_ttl用法及代码示例
- Rust TcpListener用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::net::TcpStream.peek。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。