mirror of
https://github.com/pion/webrtc.git
synced 2025-10-05 23:26:58 +08:00

Users are unable to use the callbacks inside `internal/ice`. Even though we alias things like OnSelectedCandidatePairChange are unusable since in the package they use `ice.Candidate` instead of `ICECandidate`
8 lines
196 B
Go
8 lines
196 B
Go
package webrtc
|
|
|
|
// ICEGatherOptions provides options relating to the gathering of ICE candidates.
|
|
type ICEGatherOptions struct {
|
|
ICEServers []ICEServer
|
|
ICEGatherPolicy ICETransportPolicy
|
|
}
|