mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-12 01:35:02 +00:00
87c0535823
* Add option for ICE servers to be client only * add clientOnly to configuration file and API docs --------- Co-authored-by: aler9 <46489434+aler9@users.noreply.github.com>
10 lines
234 B
Go
10 lines
234 B
Go
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"`
|
|
}
|