Source File
ice.go
Belonging Package
github.com/pion/ice/v4
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MITpackage ice// ConnectionState is an enum showing the state of a ICE Connection.type ConnectionState int// List of supported States.const (// ConnectionStateUnknown represents an unknown state.ConnectionStateUnknown ConnectionState = iota// ConnectionStateNew ICE agent is gathering addresses.ConnectionStateNew// ConnectionStateChecking ICE agent has been given local and remote candidates, and is attempting to find a match.ConnectionStateChecking// ConnectionStateConnected ICE agent has a pairing, but is still checking other pairs.ConnectionStateConnected// ConnectionStateCompleted ICE agent has finished.ConnectionStateCompleted// ConnectionStateFailed ICE agent never could successfully connect.ConnectionStateFailed// ConnectionStateDisconnected ICE agent connected successfully, but has entered a failed state.ConnectionStateDisconnected// ConnectionStateClosed ICE agent has finished and is no longer handling requests.ConnectionStateClosed)func ( ConnectionState) () string {switch {case ConnectionStateNew:return "New"case ConnectionStateChecking:return "Checking"case ConnectionStateConnected:return "Connected"case ConnectionStateCompleted:return "Completed"case ConnectionStateFailed:return "Failed"case ConnectionStateDisconnected:return "Disconnected"case ConnectionStateClosed:return "Closed"default:return "Invalid"}}// GatheringState describes the state of the candidate gathering process.type GatheringState intconst (// GatheringStateUnknown represents an unknown state.GatheringStateUnknown GatheringState = iota// GatheringStateNew indicates candidate gathering is not yet started.GatheringStateNew// GatheringStateGathering indicates candidate gathering is ongoing.GatheringStateGathering// GatheringStateComplete indicates candidate gathering has been completed.GatheringStateComplete)func ( GatheringState) () string {switch {case GatheringStateNew:return "new"case GatheringStateGathering:return "gathering"case GatheringStateComplete:return "complete"default:return ErrUnknownType.Error()}}const (relayProtocolDTLS = "dtls"relayProtocolTLS = "tls")
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |