Unverified Commit 8fde809f authored by Marten Seemann's avatar Marten Seemann Committed by GitHub
Browse files

Merge pull request #32 from libp2p/new-quic-go

use quic-go 0.10.0
parents c65434cf cf0daee2
0.2.2: QmeTwzfbGauVHBvEdD5uvLi6KtduZjc1mRDy3eJeERC1bE 0.2.3: QmYfvQoJCUTCJ54Rog3zWSCDWAkwLWFTMKzcwaNMpXYSQT
...@@ -9,9 +9,9 @@ ...@@ -9,9 +9,9 @@
"gxDependencies": [ "gxDependencies": [
{ {
"author": "marten-seemann", "author": "marten-seemann",
"hash": "QmaC1ix7g4NP7eduKToNN3CwpzBsmoyBR4D7FwfmXCRHxt", "hash": "QmU44KWVkSHno7sNDTeUcL4FBgxgoidkFuTUyTXWJPXXFJ",
"name": "quic-go", "name": "quic-go",
"version": "0.9.0" "version": "0.10.0"
}, },
{ {
"author": "whyrusleeping", "author": "whyrusleeping",
...@@ -25,6 +25,6 @@ ...@@ -25,6 +25,6 @@
"license": "", "license": "",
"name": "go-libp2p-quic-transport", "name": "go-libp2p-quic-transport",
"releaseCmd": "git commit -a -m \"gx publish $VERSION\"", "releaseCmd": "git commit -a -m \"gx publish $VERSION\"",
"version": "0.2.2" "version": "0.2.3"
} }
...@@ -19,7 +19,7 @@ import ( ...@@ -19,7 +19,7 @@ import (
) )
var quicConfig = &quic.Config{ var quicConfig = &quic.Config{
Versions: []quic.VersionNumber{quic.VersionMilestone0_9_0}, Versions: []quic.VersionNumber{quic.VersionMilestone0_10_0},
MaxIncomingStreams: 1000, MaxIncomingStreams: 1000,
MaxIncomingUniStreams: -1, // disable unidirectional streams MaxIncomingUniStreams: -1, // disable unidirectional streams
MaxReceiveStreamFlowControlWindow: 3 * (1 << 20), // 3 MB MaxReceiveStreamFlowControlWindow: 3 * (1 << 20), // 3 MB
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment