mirror of
https://github.com/pion/webrtc.git
synced 2025-11-03 09:40:59 +08:00
10 lines
290 B
Go
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"`
|
|
}
|