icegatheroptions.go 298 B

12345678910
  1. // SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
  2. // SPDX-License-Identifier: MIT
  3. package webrtc
  4. // ICEGatherOptions provides options relating to the gathering of ICE candidates.
  5. type ICEGatherOptions struct {
  6. ICEServers []ICEServer
  7. ICEGatherPolicy ICETransportPolicy
  8. }