pub type PeerAddr = SocketAddr;
pub enum PeerAddr { V4(SocketAddrV4), V6(SocketAddrV6), }
An IPv4 socket address.
An IPv6 socket address.