mirror of
https://github.com/pion/webrtc.git
synced 2025-09-27 11:32:19 +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`
10 lines
284 B
Go
10 lines
284 B
Go
package webrtc
|
|
|
|
// ICEParameters includes the ICE username fragment
|
|
// and password and other ICE-related parameters.
|
|
type ICEParameters struct {
|
|
UsernameFragment string `json:"usernameFragment"`
|
|
Password string `json:"password"`
|
|
ICELite bool `json:"iceLite"`
|
|
}
|