mirror of
https://github.com/async-rs/async-std.git
synced 2025-03-04 17:19:41 +00:00
Change recv_from to recv in UdpSocket::recv doc
This commit is contained in:
parent
128a6bc6ce
commit
fd86effb63
1 changed files with 3 additions and 2 deletions
|
@ -298,10 +298,11 @@ impl UdpSocket {
|
|||
/// use async_std::net::UdpSocket;
|
||||
///
|
||||
/// let socket = UdpSocket::bind("127.0.0.1:0").await?;
|
||||
/// socket.connect("127.0.0.1:8080").await?;
|
||||
///
|
||||
/// let mut buf = vec![0; 1024];
|
||||
/// let (n, peer) = socket.recv_from(&mut buf).await?;
|
||||
/// println!("Received {} bytes from {}", n, peer);
|
||||
/// let n = socket.recv(&mut buf).await?;
|
||||
/// println!("Received {} bytes", n);
|
||||
/// #
|
||||
/// # Ok(()) }) }
|
||||
/// ```
|
||||
|
|
Loading…
Reference in a new issue