Skip to content

Commit 70a3bcf

Browse files
committed
Change of all imports and import of legacy AddressHelper and Scheduler
changed from /lucas-clemente/quic-go to /boisjacques/qed
1 parent b422876 commit 70a3bcf

File tree

223 files changed

+1906
-542
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

223 files changed

+1906
-542
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
defaults: &defaults
2-
working_directory: /go/src/github.com/lucas-clemente/quic-go
2+
working_directory: /go/src/github.com/boisjacques/qed
33
steps:
44
- checkout
55
- run:

.gometalinter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"Linters": {
2020
"vet": "go tool vet -printfuncs=Infof,Debugf,Warningf,Errorf:PATH:LINE:MESSAGE",
2121
"misspell": "misspell -i ect:PATH:LINE:COL:MESSAGE",
22-
"megacheck": "megacheck -ignore github.com/lucas-clemente/quic-go/h2quic/response_writer_closenotifier.go:SA1019:PATH:LINE:COL:MESSAGE"
22+
"megacheck": "megacheck -ignore github.com/boisjacques/qed/h2quic/response_writer_closenotifier.go:SA1019:PATH:LINE:COL:MESSAGE"
2323
}
2424
}

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/qed.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 711 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
- Add a `quic.Config` option to configure keep-alive
3737
- Rename the STK to Cookie
3838
- Implement `net.Conn`-style deadlines for streams
39-
- 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.
40-
- 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.
39+
- 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/boisjacques/qed) for details.
40+
- Changed the log level environment variable to only accept strings ("DEBUG", "INFO", "ERROR"), see [the wiki](https://github.com/boisjacques/qed/wiki/Logging) for more details.
4141
- Rename the `h2quic.QuicRoundTripper` to `h2quic.RoundTripper`
4242
- Changed `h2quic.Server.Serve()` to accept a `net.PacketConn`
4343
- Drop support for Go 1.7 and 1.8.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22

33
<img src="docs/quic.png" width=303 height=124>
44

5-
[![Godoc Reference](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](https://godoc.org/github.com/lucas-clemente/quic-go)
6-
[![Travis Build Status](https://img.shields.io/travis/lucas-clemente/quic-go/master.svg?style=flat-square&label=Travis+build)](https://travis-ci.org/lucas-clemente/quic-go)
7-
[![CircleCI Build Status](https://img.shields.io/circleci/project/github/lucas-clemente/quic-go.svg?style=flat-square&label=CircleCI+build)](https://circleci.com/gh/lucas-clemente/quic-go)
8-
[![Windows Build Status](https://img.shields.io/appveyor/ci/lucas-clemente/quic-go/master.svg?style=flat-square&label=windows+build)](https://ci.appveyor.com/project/lucas-clemente/quic-go/branch/master)
9-
[![Code Coverage](https://img.shields.io/codecov/c/github/lucas-clemente/quic-go/master.svg?style=flat-square)](https://codecov.io/gh/lucas-clemente/quic-go/)
5+
[![Godoc Reference](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](https://godoc.org/github.com/boisjacques/qed)
6+
[![Travis Build Status](https://img.shields.io/travis/boisjacques/qed/master.svg?style=flat-square&label=Travis+build)](https://travis-ci.org/boisjacques/qed)
7+
[![CircleCI Build Status](https://img.shields.io/circleci/project/github/boisjacques/qed.svg?style=flat-square&label=CircleCI+build)](https://circleci.com/gh/boisjacques/qed)
8+
[![Windows Build Status](https://img.shields.io/appveyor/ci/boisjacques/qed/master.svg?style=flat-square&label=windows+build)](https://ci.appveyor.com/project/boisjacques/qed/branch/master)
9+
[![Code Coverage](https://img.shields.io/codecov/c/github/boisjacques/qed/master.svg?style=flat-square)](https://codecov.io/gh/boisjacques/qed/)
1010

1111
quic-go is an implementation of the [QUIC](https://en.wikipedia.org/wiki/QUIC) protocol in Go. It roughly implements the [IETF QUIC draft](https://github.com/quicwg/base-drafts), although we don't fully support any of the draft versions at the moment.
1212

1313
## Version compatibility
1414

1515
Since quic-go is under active development, there's no guarantee that two builds of different commits are interoperable. The QUIC version used in the *master* branch is just a placeholder, and should not be considered stable.
1616

17-
If you want to use quic-go as a library in other projects, please consider using a [tagged release](https://github.com/lucas-clemente/quic-go/releases). These releases expose [experimental QUIC versions](https://github.com/quicwg/base-drafts/wiki/QUIC-Versions), which are guaranteed to be stable.
17+
If you want to use quic-go as a library in other projects, please consider using a [tagged release](https://github.com/boisjacques/qed/releases). These releases expose [experimental QUIC versions](https://github.com/quicwg/base-drafts/wiki/QUIC-Versions), which are guaranteed to be stable.
1818

1919
## Google QUIC
2020

2121
quic-go used to support both the QUIC versions supported by Google Chrome and QUIC as deployed on Google's servers, as well as IETF QUIC. Due to the divergence of the two protocols, we decided to not support both versions any more.
2222

23-
The *master* branch **only** supports IETF QUIC. For Google QUIC support, please refer to the [gquic branch](https://github.com/lucas-clemente/quic-go/tree/gquic).
23+
The *master* branch **only** supports IETF QUIC. For Google QUIC support, please refer to the [gquic branch](https://github.com/boisjacques/qed/tree/gquic).
2424

2525
## Guides
2626

@@ -65,4 +65,4 @@ http.Client{
6565

6666
## Contributing
6767

68-
We are always happy to welcome new contributors! We have a number of self-contained issues that are suitable for first-time contributors, they are tagged with [help wanted](https://github.com/lucas-clemente/quic-go/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22). If you have any questions, please feel free to reach out by opening an issue or leaving a comment.
68+
We are always happy to welcome new contributors! We have a number of self-contained issues that are suitable for first-time contributors, they are tagged with [help wanted](https://github.com/boisjacques/qed/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22). If you have any questions, please feel free to reach out by opening an issue or leaving a comment.

0 commit comments

Comments
 (0)