iceparameters.go 386 B

123456789101112
  1. // SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
  2. // SPDX-License-Identifier: MIT
  3. package webrtc
  4. // ICEParameters includes the ICE username fragment
  5. // and password and other ICE-related parameters.
  6. type ICEParameters struct {
  7. UsernameFragment string `json:"usernameFragment"`
  8. Password string `json:"password"`
  9. ICELite bool `json:"iceLite"`
  10. }