mirror of
https://github.com/pion/webrtc.git
synced 2025-10-05 15:16:52 +08:00
8 lines
215 B
Go
8 lines
215 B
Go
package webrtc
|
|
|
|
// DTLSParameters holds information relating to DTLS configuration.
|
|
type DTLSParameters struct {
|
|
Role DTLSRole `json:"role"`
|
|
Fingerprints []DTLSFingerprint `json:"fingerprints"`
|
|
}
|