mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 07:07:24 +00: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"`
|
|
}
|