[][src]Struct romio::udp::UdpSocket

pub struct UdpSocket { /* fields omitted */ }

A UDP socket.

Methods

impl UdpSocket
[src]

Creates a UDP socket from the given address.

Binding with a port number of 0 will request that the OS assigns a port to this socket. The port allocated can be queried via the local_addr method.

Examples

use romio::udp::UdpSocket;

let socket_addr = "127.0.0.1:0".parse()?;
let socket = UdpSocket::bind(&socket_addr)?;

Returns the local address that this listener is bound to.

This can be useful, for example, when binding to port 0 to figure out which port was actually bound.

Examples

use romio::udp::UdpSocket;

println!("Socket addr: {:?}", socket.local_addr());

Sends data on the socket to the given address. On success, returns the number of bytes written.

Examples

#![feature(async_await, await_macro, futures_api)]
use romio::udp::UdpSocket;

const THE_MERCHANT_OF_VENICE: &[u8] = b"
    If you prick us, do we not bleed?
    If you tickle us, do we not laugh?
    If you poison us, do we not die?
    And if you wrong us, shall we not revenge? 
";

let addr = "127.0.0.1:0".parse()?;
let target = "127.0.0.1:7878".parse()?;
let mut socket = UdpSocket::bind(&addr)?;

await!(socket.send_to(THE_MERCHANT_OF_VENICE, &target))?;

Receives data from the socket. On success, returns the number of bytes read and the address from whence the data came.

Exampes

#![feature(futures_api, async_await, await_macro)]
use romio::udp::UdpSocket;

let addr = "127.0.0.1:0".parse()?;
let mut socket = UdpSocket::bind(&addr)?;
let mut buf = vec![0; 1024];

await!(socket.recv_from(&mut buf))?;

Sends data on the socket to the given address. On success, returns the number of bytes written.

Returns an error when the IP version of the local socket does not match that of target.

Return

On success, returns Ok(Poll::Ready(num_bytes_written)).

If the socket is not ready for writing, the method returns Ok(Poll::Pending) and arranges for the current task to receive a notification when the socket becomes writable.

If the socket is not ready for receiving, the method returns Ok(Poll::Pending) and arranges for the current task to receive a notification when the socket becomes readable.

Check the UDP socket's read readiness state.

If the socket is not ready for receiving then Poll::Pending is returned and the current task is notified once a new event is received.

The socket will remain in a read-ready state until calls to poll_recv return Pending.

Check the UDP socket's write readiness state.

If the socket is not ready for sending then Poll::Pending is returned and the current task is notified once a new event is received.

The I/O resource will remain in a write-ready state until calls to poll_send return Pending.

Gets the value of the SO_BROADCAST option for this socket.

For more information about this option, see set_broadcast.

Sets the value of the SO_BROADCAST option for this socket.

When enabled, this socket is allowed to send packets to a broadcast address.

Gets the value of the IP_MULTICAST_LOOP option for this socket.

For more information about this option, see set_multicast_loop_v4.

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

This may not have any affect on IPv6 sockets.

Gets the value of the IP_MULTICAST_TTL option for this socket.

For more information about this option, see set_multicast_ttl_v4.

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

This may not have any affect on IPv6 sockets.

Gets the value of the IPV6_MULTICAST_LOOP option for this socket.

For more information about this option, see set_multicast_loop_v6.

Sets the value of the IPV6_MULTICAST_LOOP option for this socket.

Controls whether this socket sees the multicast packets it sends itself.

Note

This may not have any affect on IPv4 sockets.

Gets the value of the IP_TTL option for this socket.

For more information about this option, see set_ttl.

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.

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.

Examples

use romio::udp::UdpSocket;
use std::net::Ipv4Addr;

let socket_addr = "127.0.0.1:0".parse()?;
let interface = Ipv4Addr::new(0, 0, 0, 0);
let mdns_addr = Ipv4Addr::new(224, 0, 0, 123);

let socket = UdpSocket::bind(&socket_addr)?;
socket.join_multicast_v4(&mdns_addr, &interface)?;

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).

Examples

use romio::udp::UdpSocket;
use std::net::{Ipv6Addr, SocketAddr};
let socket_addr = SocketAddr::new(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0).into(), 0);
let mdns_addr = Ipv6Addr::new(0xFF02, 0, 0, 0, 0, 0, 0, 0x0123) ;
let socket = UdpSocket::bind(&socket_addr)?;

socket.join_multicast_v6(&mdns_addr, 0)?;

Executes an operation of the IP_DROP_MEMBERSHIP type.

For more information about this option, see join_multicast_v4.

Executes an operation of the IPV6_DROP_MEMBERSHIP type.

For more information about this option, see join_multicast_v6.

Trait Implementations

impl Debug for UdpSocket
[src]

impl AsRawFd for UdpSocket
[src]

Auto Trait Implementations

impl Send for UdpSocket

impl Sync for UdpSocket

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T
[src]