dtlsparameters.go 317 B

12345678910
  1. // SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
  2. // SPDX-License-Identifier: MIT
  3. package webrtc
  4. // DTLSParameters holds information relating to DTLS configuration.
  5. type DTLSParameters struct {
  6. Role DTLSRole `json:"role"`
  7. Fingerprints []DTLSFingerprint `json:"fingerprints"`
  8. }