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"`
|
|
}
|