mirror of
https://github.com/pion/webrtc.git
synced 2025-10-17 12:40:48 +08:00
8 lines
227 B
Go
8 lines
227 B
Go
package webrtc
|
|
|
|
// RTCDtlsParameters holds information relating to DTLS configuration.
|
|
type RTCDtlsParameters struct {
|
|
Role RTCDtlsRole `json:"role"`
|
|
Fingerprints []RTCDtlsFingerprint `json:"fingerprints"`
|
|
}
|