blob: 0c03a88bf2f109e7be06276b36fe668758e5f403 (
plain)
1
2
3
4
5
6
7
8
9
|
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"`
}
|