mediamtx/internal/conf/webrtc_ice_server.go

10 lines
234 B
Go
Raw Normal View History

package conf
// WebRTCICEServer is a WebRTC ICE Server.
type WebRTCICEServer struct {
URL string `json:"url"`
Username string `json:"username"`
Password string `json:"password"`
ClientOnly bool `json:"clientOnly"`
}