-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit introduces Multipath QUIC, a extension to the QUIC protocol enabling hosts to spread data over multiple paths for a single connection.
- Loading branch information
1 parent
f4113b7
commit 8073819
Showing
286 changed files
with
20,057 additions
and
9,921 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
set -ex | ||
|
||
if [ ${TESTMODE} == "unit" ]; then | ||
cat quic-go.coverprofile > coverage.txt | ||
cat */*.coverprofile >> coverage.txt | ||
cat `find . -name "*.coverprofile"` > coverage.txt | ||
bash <(curl -s https://codecov.io/bash) -f coverage.txt | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
set -ex | ||
|
||
go get -t ./... | ||
if [ ${TESTMODE} == "unit" ]; then | ||
ginkgo -r --cover --randomizeAllSpecs --randomizeSuites --trace --progress --skipPackage integrationtests --skipMeasurements | ||
ginkgo -r -v -cover -randomizeAllSpecs -randomizeSuites -trace -skipPackage integrationtests,benchmark | ||
fi | ||
|
||
if [ ${TESTMODE} == "integration" ]; then | ||
ginkgo --randomizeAllSpecs --randomizeSuites --trace --progress -focus "Benchmark" | ||
ginkgo -r --randomizeAllSpecs --randomizeSuites --trace --progress integrationtests | ||
# run benchmark tests | ||
ginkgo -randomizeAllSpecs -randomizeSuites -trace benchmark -- -samples=1 | ||
# run benchmark tests with the Go race detector | ||
# The Go race detector only works on amd64. | ||
if [ ${TRAVIS_GOARCH} == 'amd64' ]; then | ||
ginkgo -race -randomizeAllSpecs -randomizeSuites -trace benchmark -- -samples=1 -size=10 | ||
fi | ||
# run integration tests | ||
ginkgo -r -v -randomizeAllSpecs -randomizeSuites -trace integrationtests | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Changelog | ||
|
||
## v0.6.0 (unreleased) | ||
|
||
- Add support for QUIC 38 and 39, drop support for QUIC 35 and 36 | ||
- Added `quic.Config` options for maximal flow control windows | ||
- Add a `quic.Config` option for QUIC versions | ||
- Add a `quic.Config` option to request truncation of the connection ID from a server | ||
- Add a `quic.Config` option to configure the source address validation | ||
- Add a `quic.Config` option to configure the handshake timeout | ||
- Add a `quic.Config` option to configure the idle timeout | ||
- Add a `quic.Config` option to configure keep-alive | ||
- Rename the STK to Cookie | ||
- Implement `net.Conn`-style deadlines for streams | ||
- Remove the `tls.Config` from the `quic.Config`. The `tls.Config` must now be passed to the `Dial` and `Listen` functions as a separate parameter. See the [Godoc](https://godoc.org/github.com/lucas-clemente/quic-go) for details. | ||
- Changed the log level environment variable to only accept strings ("DEBUG", "INFO", "ERROR"), see [the wiki](https://github.com/lucas-clemente/quic-go/wiki/Logging) for more details. | ||
- Rename the `h2quic.QuicRoundTripper` to `h2quic.RoundTripper` | ||
- Changed `h2quic.Server.Serve()` to accept a `net.PacketConn` | ||
- Drop support for Go 1.7 and 1.8. | ||
- Various bugfixes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.