Documentation ¶
Overview ¶
Package turn contains the STUN/TURN server.
Index ¶
Constants ¶
View Source
const DefaultListenAddress = "[::]:3478"
DefaultListenAddress is the default listen address for the TURN server.
View Source
const DefaultPortRange = "49152-65535"
DefaultPortRange is the default port range for the TURN server.
View Source
const DefaultRelayAddress = "0.0.0.0"
DefaultRelayAddress is the default relay address for the TURN server.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Options ¶
type Options struct { // PublicIP is the public IP address of the TURN server. This is used for relaying. PublicIP string // RelayAddressUDP is the binding address the TURN server uses for request handling and STUN relays. // Defaults to 0.0.0.0. RelayAddressUDP string // ListenUDP is the address the TURN server listens on for UDP requests. ListenUDP string // Realm is the realm used for authentication. Realm string // PortRange is the range of ports the TURN server will use for relaying. PortRange string }
Options contains the options for the TURN server.
Click to show internal directories.
Click to hide internal directories.