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


Rust UdpSocket.peer_addr用法及代码示例


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

用法

pub fn peer_addr(&self) -> Result<SocketAddr>

返回此套接字连接到的远程对等方的套接字地址。

例子

use std::net::{Ipv4Addr, SocketAddr, SocketAddrV4, UdpSocket};

let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address");
socket.connect("192.168.0.1:41203").expect("couldn't connect to address");
assert_eq!(socket.peer_addr().unwrap(),
           SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(192, 168, 0, 1), 41203)));

如果套接字未连接,它将返回 NotConnected 错误。

use std::net::UdpSocket;

let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address");
assert_eq!(socket.peer_addr().unwrap_err().kind(),
           std::io::ErrorKind::NotConnected);

相关用法


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