std:🥅:UdpSocket - Rust (original) (raw)
pub fn [bind](#method.bind)<A: [ToSocketAddrs](../../std/net/trait.ToSocketAddrs.html "trait std:🥅:ToSocketAddrs")>(addr: A) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[UdpSocket](../../std/net/struct.UdpSocket.html "struct std:🥅:UdpSocket")>
[src]
Creates a UDP socket from the given address.
The address type can be any implementor of ToSocketAddrs trait. See its documentation for concrete examples.
If addr
yields multiple addresses, bind
will be attempted with each of the addresses until one succeeds and returns the socket. If none of the addresses succeed in creating a socket, the error returned from the last attempt (the last address) is returned.
Create a UDP socket bound to 127.0.0.1:3400
:
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:3400").expect("couldn't bind to address");Run
Create a UDP socket bound to 127.0.0.1:3400
. If the socket cannot be bound to that address, create a UDP socket bound to 127.0.0.1:3401
:
use std:🥅:{SocketAddr, UdpSocket};
let addrs = [ SocketAddr::from(([127, 0, 0, 1], 3400)), SocketAddr::from(([127, 0, 0, 1], 3401)), ]; let socket = UdpSocket::bind(&addrs[..]).expect("couldn't bind to address");Run
pub fn [recv_from](#method.recv%5Ffrom)(&self, buf: [&mut [](../primitive.slice.html)[u8](../primitive.u8.html)[]](../primitive.slice.html)) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[(](../primitive.tuple.html)[usize](../primitive.usize.html), [SocketAddr](../../std/net/enum.SocketAddr.html "enum std:🥅:SocketAddr")[)](../primitive.tuple.html)>
[src]
Receives a single datagram message on the socket. On success, returns the number of bytes read and the origin.
The function must be called with valid byte array buf
of sufficient size to hold the message bytes. If a message is too long to fit in the supplied buffer, excess bytes may be discarded.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); let mut buf = [0; 10]; let (number_of_bytes, src_addr) = socket.recv_from(&mut buf) .expect("Didn't receive data"); let filled_buf = &mut buf[..number_of_bytes];Run
pub fn [peek_from](#method.peek%5Ffrom)(&self, buf: [&mut [](../primitive.slice.html)[u8](../primitive.u8.html)[]](../primitive.slice.html)) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[(](../primitive.tuple.html)[usize](../primitive.usize.html), [SocketAddr](../../std/net/enum.SocketAddr.html "enum std:🥅:SocketAddr")[)](../primitive.tuple.html)>
1.18.0
Receives a single datagram message on the socket, without removing it from the queue. On success, returns the number of bytes read and the origin.
The function must be called with valid byte array buf
of sufficient size to hold the message bytes. If a message is too long to fit in the supplied buffer, excess bytes may be discarded.
Successive calls return the same data. This is accomplished by passingMSG_PEEK
as a flag to the underlying recvfrom
system call.
Do not use this function to implement busy waiting, instead use libc::poll
to synchronize IO events on one or more sockets.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); let mut buf = [0; 10]; let (number_of_bytes, src_addr) = socket.peek_from(&mut buf) .expect("Didn't receive data"); let filled_buf = &mut buf[..number_of_bytes];Run
pub fn [send_to](#method.send%5Fto)<A: [ToSocketAddrs](../../std/net/trait.ToSocketAddrs.html "trait std:🥅:ToSocketAddrs")>(&self, buf: [&[](../primitive.slice.html)[u8](../primitive.u8.html)[]](../primitive.slice.html), addr: A) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[usize](../primitive.usize.html)>
[src]
Sends data on the socket to the given address. On success, returns the number of bytes written.
Address type can be any implementor of ToSocketAddrs trait. See its documentation for concrete examples.
It is possible for addr
to yield multiple addresses, but send_to
will only send data to the first address yielded by addr
.
This will return an error when the IP version of the local socket does not match that returned from ToSocketAddrs.
See https://github.com/rust-lang/rust/issues/34202 for more details.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.send_to(&[0; 10], "127.0.0.1:4242").expect("couldn't send data");Run
pub fn [local_addr](#method.local%5Faddr)(&self) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[SocketAddr](../../std/net/enum.SocketAddr.html "enum std:🥅:SocketAddr")>
[src]
Returns the socket address that this socket was created from.
use std:🥅:{Ipv4Addr, SocketAddr, SocketAddrV4, UdpSocket};
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); assert_eq!(socket.local_addr().unwrap(), SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(127, 0, 0, 1), 34254)));Run
pub fn [try_clone](#method.try%5Fclone)(&self) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[UdpSocket](../../std/net/struct.UdpSocket.html "struct std:🥅:UdpSocket")>
[src]
Creates a new independently owned handle to the underlying socket.
The returned UdpSocket
is a reference to the same socket that this object references. Both handles will read and write the same port, and options set on one socket will be propagated to the other.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); let socket_clone = socket.try_clone().expect("couldn't clone the socket");Run
pub fn [set_read_timeout](#method.set%5Fread%5Ftimeout)(&self, dur: [Option](../../std/option/enum.Option.html "enum std::option::Option")<[Duration](../../std/time/struct.Duration.html "struct std::time::Duration")>) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[()](../primitive.unit.html)>
1.4.0
Sets the read timeout to the timeout specified.
If the value specified is None, then read calls will block indefinitely. It is an error to pass the zero Duration to this method.
Platforms may return a different error code whenever a read times out as a result of setting this option. For example Unix typically returns an error of the kind WouldBlock, but Windows may return TimedOut.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_read_timeout(None).expect("set_read_timeout call failed");Run
pub fn [set_write_timeout](#method.set%5Fwrite%5Ftimeout)(&self, dur: [Option](../../std/option/enum.Option.html "enum std::option::Option")<[Duration](../../std/time/struct.Duration.html "struct std::time::Duration")>) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[()](../primitive.unit.html)>
1.4.0
Sets the write timeout to the timeout specified.
If the value specified is None, then write calls will block indefinitely. It is an error to pass the zero Duration to this method.
Platforms may return a different error code whenever a write times out as a result of setting this option. For example Unix typically returns an error of the kind WouldBlock, but Windows may return TimedOut.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_write_timeout(None).expect("set_write_timeout call failed");Run
pub fn [read_timeout](#method.read%5Ftimeout)(&self) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[Option](../../std/option/enum.Option.html "enum std::option::Option")<[Duration](../../std/time/struct.Duration.html "struct std::time::Duration")>>
1.4.0
Returns the read timeout of this socket.
If the timeout is None, then read calls will block indefinitely.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_read_timeout(None).expect("set_read_timeout call failed"); assert_eq!(socket.read_timeout().unwrap(), None);Run
pub fn [write_timeout](#method.write%5Ftimeout)(&self) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[Option](../../std/option/enum.Option.html "enum std::option::Option")<[Duration](../../std/time/struct.Duration.html "struct std::time::Duration")>>
1.4.0
Returns the write timeout of this socket.
If the timeout is None, then write calls will block indefinitely.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_write_timeout(None).expect("set_write_timeout call failed"); assert_eq!(socket.write_timeout().unwrap(), None);Run
pub fn [set_broadcast](#method.set%5Fbroadcast)(&self, broadcast: [bool](../primitive.bool.html)) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[()](../primitive.unit.html)>
1.9.0
Sets the value of the SO_BROADCAST
option for this socket.
When enabled, this socket is allowed to send packets to a broadcast address.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_broadcast(false).expect("set_broadcast call failed");Run
pub fn [broadcast](#method.broadcast)(&self) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[bool](../primitive.bool.html)>
1.9.0
Gets the value of the SO_BROADCAST
option for this socket.
For more information about this option, seeset_broadcast.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_broadcast(false).expect("set_broadcast call failed"); assert_eq!(socket.broadcast().unwrap(), false);Run
pub fn [set_multicast_loop_v4](#method.set%5Fmulticast%5Floop%5Fv4)(&self, multicast_loop_v4: [bool](../primitive.bool.html)) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[()](../primitive.unit.html)>
1.9.0
Sets the value of the IP_MULTICAST_LOOP
option for this socket.
If enabled, multicast packets will be looped back to the local socket. Note that this may not have any affect on IPv6 sockets.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_multicast_loop_v4(false).expect("set_multicast_loop_v4 call failed");Run
pub fn [multicast_loop_v4](#method.multicast%5Floop%5Fv4)(&self) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[bool](../primitive.bool.html)>
1.9.0
Gets the value of the IP_MULTICAST_LOOP
option for this socket.
For more information about this option, seeset_multicast_loop_v4.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_multicast_loop_v4(false).expect("set_multicast_loop_v4 call failed"); assert_eq!(socket.multicast_loop_v4().unwrap(), false);Run
pub fn [set_multicast_ttl_v4](#method.set%5Fmulticast%5Fttl%5Fv4)(&self, multicast_ttl_v4: [u32](../primitive.u32.html)) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[()](../primitive.unit.html)>
1.9.0
Sets the value of the IP_MULTICAST_TTL
option for this socket.
Indicates the time-to-live value of outgoing multicast packets for this socket. The default value is 1 which means that multicast packets don't leave the local network unless explicitly requested.
Note that this may not have any affect on IPv6 sockets.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_multicast_ttl_v4(42).expect("set_multicast_ttl_v4 call failed");Run
pub fn [multicast_ttl_v4](#method.multicast%5Fttl%5Fv4)(&self) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[u32](../primitive.u32.html)>
1.9.0
Gets the value of the IP_MULTICAST_TTL
option for this socket.
For more information about this option, seeset_multicast_ttl_v4.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_multicast_ttl_v4(42).expect("set_multicast_ttl_v4 call failed"); assert_eq!(socket.multicast_ttl_v4().unwrap(), 42);Run
pub fn [set_multicast_loop_v6](#method.set%5Fmulticast%5Floop%5Fv6)(&self, multicast_loop_v6: [bool](../primitive.bool.html)) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[()](../primitive.unit.html)>
1.9.0
Sets the value of the IPV6_MULTICAST_LOOP
option for this socket.
Controls whether this socket sees the multicast packets it sends itself. Note that this may not have any affect on IPv4 sockets.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_multicast_loop_v6(false).expect("set_multicast_loop_v6 call failed");Run
pub fn [multicast_loop_v6](#method.multicast%5Floop%5Fv6)(&self) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[bool](../primitive.bool.html)>
1.9.0
Gets the value of the IPV6_MULTICAST_LOOP
option for this socket.
For more information about this option, seeset_multicast_loop_v6.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_multicast_loop_v6(false).expect("set_multicast_loop_v6 call failed"); assert_eq!(socket.multicast_loop_v6().unwrap(), false);Run
pub fn [set_ttl](#method.set%5Fttl)(&self, ttl: [u32](../primitive.u32.html)) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[()](../primitive.unit.html)>
1.9.0
Sets the value for the IP_TTL
option on this socket.
This value sets the time-to-live field that is used in every packet sent from this socket.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_ttl(42).expect("set_ttl call failed");Run
pub fn [ttl](#method.ttl)(&self) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[u32](../primitive.u32.html)>
1.9.0
Gets the value of the IP_TTL
option for this socket.
For more information about this option, see set_ttl.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.set_ttl(42).expect("set_ttl call failed"); assert_eq!(socket.ttl().unwrap(), 42);Run
`pub fn join_multicast_v4(
&self,
multiaddr: &Ipv4Addr,
interface: &Ipv4Addr
) -> Result<()>`
1.9.0
Executes an operation of the IP_ADD_MEMBERSHIP
type.
This function specifies a new multicast group for this socket to join. The address must be a valid multicast address, and interface
is the address of the local interface with which the system should join the multicast group. If it's equal to INADDR_ANY
then an appropriate interface is chosen by the system.
`pub fn join_multicast_v6(
&self,
multiaddr: &Ipv6Addr,
interface: u32
) -> Result<()>`
1.9.0
Executes an operation of the IPV6_ADD_MEMBERSHIP
type.
This function specifies a new multicast group for this socket to join. The address must be a valid multicast address, and interface
is the index of the interface to join/leave (or 0 to indicate any interface).
`pub fn leave_multicast_v4(
&self,
multiaddr: &Ipv4Addr,
interface: &Ipv4Addr
) -> Result<()>`
1.9.0
Executes an operation of the IP_DROP_MEMBERSHIP
type.
For more information about this option, seejoin_multicast_v4.
`pub fn leave_multicast_v6(
&self,
multiaddr: &Ipv6Addr,
interface: u32
) -> Result<()>`
1.9.0
Executes an operation of the IPV6_DROP_MEMBERSHIP
type.
For more information about this option, seejoin_multicast_v6.
pub fn [take_error](#method.take%5Ferror)(&self) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[Option](../../std/option/enum.Option.html "enum std::option::Option")<[Error](../../std/io/struct.Error.html "struct std::io::Error")>>
1.9.0
Get the value of the SO_ERROR
option on this socket.
This will retrieve the stored error in the underlying socket, clearing the field in the process. This can be useful for checking errors between calls.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); match socket.take_error() { Ok(Some(error)) => println!("UdpSocket error: {:?}", error), Ok(None) => println!("No error"), Err(error) => println!("UdpSocket.take_error failed: {:?}", error), }Run
pub fn [connect](#method.connect)<A: [ToSocketAddrs](../../std/net/trait.ToSocketAddrs.html "trait std:🥅:ToSocketAddrs")>(&self, addr: A) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[()](../primitive.unit.html)>
1.9.0
Connects this UDP socket to a remote address, allowing the send
andrecv
syscalls to be used to send data and also applies filters to only receive data from the specified address.
If addr
yields multiple addresses, connect
will be attempted with each of the addresses until the underlying OS function returns no error. Note that usually, a successful connect
call does not specify that there is a remote server listening on the port, rather, such an error would only be detected after the first send. If the OS returns an error for each of the specified addresses, the error returned from the last connection attempt (the last address) is returned.
Create a UDP socket bound to 127.0.0.1:3400
and connect the socket to127.0.0.1:8080
:
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:3400").expect("couldn't bind to address"); socket.connect("127.0.0.1:8080").expect("connect function failed");Run
Unlike in the TCP case, passing an array of addresses to the connect
function of a UDP socket is not a useful thing to do: The OS will be unable to determine whether something is listening on the remote address without the application sending data.
pub fn [send](#method.send)(&self, buf: [&[](../primitive.slice.html)[u8](../primitive.u8.html)[]](../primitive.slice.html)) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[usize](../primitive.usize.html)>
1.9.0
Sends data on the socket to the remote address to which it is connected.
The connect method will connect this socket to a remote address. This method will fail if the socket is not connected.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.connect("127.0.0.1:8080").expect("connect function failed"); socket.send(&[0, 1, 2]).expect("couldn't send message");Run
pub fn [recv](#method.recv)(&self, buf: [&mut [](../primitive.slice.html)[u8](../primitive.u8.html)[]](../primitive.slice.html)) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[usize](../primitive.usize.html)>
1.9.0
Receives a single datagram message on the socket from the remote address to which it is connected. On success, returns the number of bytes read.
The function must be called with valid byte array buf
of sufficient size to hold the message bytes. If a message is too long to fit in the supplied buffer, excess bytes may be discarded.
The connect method will connect this socket to a remote address. This method will fail if the socket is not connected.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.connect("127.0.0.1:8080").expect("connect function failed"); let mut buf = [0; 10]; match socket.recv(&mut buf) { Ok(received) => println!("received {} bytes {:?}", received, &buf[..received]), Err(e) => println!("recv function failed: {:?}", e), }Run
pub fn [peek](#method.peek)(&self, buf: [&mut [](../primitive.slice.html)[u8](../primitive.u8.html)[]](../primitive.slice.html)) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[usize](../primitive.usize.html)>
1.18.0
Receives single datagram on the socket from the remote address to which it is connected, without removing the message from input queue. On success, returns the number of bytes peeked.
The function must be called with valid byte array buf
of sufficient size to hold the message bytes. If a message is too long to fit in the supplied buffer, excess bytes may be discarded.
Successive calls return the same data. This is accomplished by passingMSG_PEEK
as a flag to the underlying recv
system call.
Do not use this function to implement busy waiting, instead use libc::poll
to synchronize IO events on one or more sockets.
The connect method will connect this socket to a remote address. This method will fail if the socket is not connected.
This method will fail if the socket is not connected. The connect
method will connect this socket to a remote address.
use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); socket.connect("127.0.0.1:8080").expect("connect function failed"); let mut buf = [0; 10]; match socket.peek(&mut buf) { Ok(received) => println!("received {} bytes", received), Err(e) => println!("peek function failed: {:?}", e), }Run
pub fn [set_nonblocking](#method.set%5Fnonblocking)(&self, nonblocking: [bool](../primitive.bool.html)) -> [Result](../../std/io/type.Result.html "type std::io::Result")<[()](../primitive.unit.html)>
1.9.0
Moves this UDP socket into or out of nonblocking mode.
This will result in recv
, recv_from
, send
, and send_to
operations becoming nonblocking, i.e. immediately returning from their calls. If the IO operation is successful, Ok
is returned and no further action is required. If the IO operation could not be completed and needs to be retried, an error with kindio::ErrorKind::WouldBlock is returned.
On Unix platforms, calling this method corresponds to calling fcntl
FIONBIO
. On Windows calling this method corresponds to callingioctlsocket
FIONBIO
.
Create a UDP socket bound to 127.0.0.1:7878
and read bytes in nonblocking mode:
use std::io; use std:🥅:UdpSocket;
let socket = UdpSocket::bind("127.0.0.1:7878").unwrap(); socket.set_nonblocking(true).unwrap();
let mut buf = [0; 10]; let (num_bytes_read, _) = loop { match socket.recv_from(&mut buf) { Ok(n) => break n, Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
wait_for_fd();
}
Err(e) => panic!("encountered IO error: {}", e),
}
}; println!("bytes: {:?}", &buf[..num_bytes_read]);Run