[src]

Module std::io::net::udp

UDP (User Datagram Protocol) network connections.

This module contains the ability to open a UDP stream to a socket address. The destination and binding addresses can either be an IPv4 or IPv6 address. There is no corresponding notion of a server because UDP is a datagram protocol.

UdpSocket

A User Datagram Protocol socket.

UdpStream

A type that allows convenient usage of a UDP stream connected to one address via the Reader and Writer traits.