mirror of
https://github.com/pion/webrtc.git
synced 2025-10-05 15:16:52 +08:00

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+).
10 lines
231 B
Go
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"`
|
|
}
|