Files
webrtc/iceparameters.go
Max Hawkins 0647ce9c26 Remove rtc prefix from filenames
Relates to #408
2019-02-17 16:22:56 -08:00

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"`
}