Skip to content

Commit 54bf8e0

Browse files
committed
Document UdpSocket peer_addr NotConnected error
1 parent df2dce3 commit 54bf8e0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/libstd/net/udp.rs

+13
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,19 @@ impl UdpSocket {
193193
/// assert_eq!(socket.peer_addr().unwrap(),
194194
/// SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(192, 168, 0, 1), 41203)));
195195
/// ```
196+
///
197+
/// If the socket isn't connected, it will return a [`NotConnected`] error.
198+
///
199+
/// [`NotConnected`]: ../../std/io/enum.ErrorKind.html#variant.NotConnected
200+
///
201+
/// ```no_run
202+
/// #![feature(udp_peer_addr)]
203+
/// use std::net::UdpSocket;
204+
///
205+
/// let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address");
206+
/// assert_eq!(socket.peer_addr().unwrap_err().kind(),
207+
/// ::std::io::ErrorKind::NotConnected);
208+
/// ```
196209
#[unstable(feature = "udp_peer_addr", issue = "59127")]
197210
pub fn peer_addr(&self) -> io::Result<SocketAddr> {
198211
self.0.peer_addr()

0 commit comments

Comments
 (0)