Files
webrtc/rtciceparameters.go
2019-01-08 13:43:49 -08:00

10 lines
290 B
Go

package webrtc
// RTCIceParameters includes the ICE username fragment
// and password and other ICE-related parameters.
type RTCIceParameters struct {
UsernameFragment string `json:"usernameFragment"`
Password string `json:"password"`
IceLite bool `json:"iceLite"`
}