mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-13 03:35:17 +00:00
19 lines
568 B
Go
19 lines
568 B
Go
package quicreuse
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/quic-go/quic-go"
|
|
)
|
|
|
|
var quicConfig = &quic.Config{
|
|
MaxIncomingStreams: 256,
|
|
MaxIncomingUniStreams: 5, // allow some unidirectional streams, in case we speak WebTransport
|
|
MaxStreamReceiveWindow: 10 * (1 << 20), // 10 MB
|
|
MaxConnectionReceiveWindow: 15 * (1 << 20), // 15 MB
|
|
KeepAlivePeriod: 15 * time.Second,
|
|
Versions: []quic.VersionNumber{quic.Version1},
|
|
// We don't use datagrams (yet), but this is necessary for WebTransport
|
|
EnableDatagrams: true,
|
|
}
|