iceparameters.go 284 B

123456789
  1. package webrtc
  2. // ICEParameters includes the ICE username fragment
  3. // and password and other ICE-related parameters.
  4. type ICEParameters struct {
  5. UsernameFragment string `json:"usernameFragment"`
  6. Password string `json:"password"`
  7. ICELite bool `json:"iceLite"`
  8. }