Files
webrtc/quicparameters.go
Michael MacDonald 64eecd6d39 Disable quic by default; enable with build tag
Taking a more extreme approach than #588... This patch
disables quic by default. The advantage here would be
that webrtc builds with older versions of go than
quic-go supports (currently 1.12+).
2019-04-05 15:32:40 -04:00

10 lines
231 B
Go

// +build quic
package webrtc
// QUICParameters holds information relating to QUIC configuration.
type QUICParameters struct {
Role QUICRole `json:"role"`
Fingerprints []DTLSFingerprint `json:"fingerprints"`
}