mirror of
https://github.com/status-im/status-go.git
synced 2025-02-03 10:25:35 +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"`
|
||
|
}
|