Skip to main content

RelayedAddr

Type Alias RelayedAddr 

Source
pub type RelayedAddr = SocketAddr;
Expand description

The public address the TURN server allocated on this client’s behalf.

Peers send here; the server forwards to the client.

Aliased Type§

pub enum RelayedAddr {
    V4(SocketAddrV4),
    V6(SocketAddrV6),
}

Variants§

§1.0.0

V4(SocketAddrV4)

An IPv4 socket address.

§1.0.0

V6(SocketAddrV6)

An IPv6 socket address.