github.com/pion/webrtc/v4@v4.0.1/iceparameters.go (about)

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