Skip to content

Commit 85ba379

Browse files
committed
Rename module
1 parent 7871834 commit 85ba379

File tree

351 files changed

+934
-934
lines changed

Some content is hidden

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

351 files changed

+934
-934
lines changed

Changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@
101101
- Add a `quic.Config` option to configure keep-alive
102102
- Rename the STK to Cookie
103103
- Implement `net.Conn`-style deadlines for streams
104-
- 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/quic-go/quic-go) for details.
105-
- Changed the log level environment variable to only accept strings ("DEBUG", "INFO", "ERROR"), see [the wiki](https://github.com/quic-go/quic-go/wiki/Logging) for more details.
104+
- 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/sagernet/quic-go) for details.
105+
- Changed the log level environment variable to only accept strings ("DEBUG", "INFO", "ERROR"), see [the wiki](https://github.com/sagernet/quic-go/wiki/Logging) for more details.
106106
- Rename the `h2quic.QuicRoundTripper` to `h2quic.RoundTripper`
107107
- Changed `h2quic.Server.Serve()` to accept a `net.PacketConn`
108108
- Drop support for Go 1.7 and 1.8.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<img src="docs/quic.png" width=303 height=124>
44

55
[![Documentation](https://img.shields.io/badge/docs-quic--go.net-red?style=flat)](https://quic-go.net/docs/)
6-
[![PkgGoDev](https://pkg.go.dev/badge/github.com/quic-go/quic-go)](https://pkg.go.dev/github.com/quic-go/quic-go)
6+
[![PkgGoDev](https://pkg.go.dev/badge/github.com/sagernet/quic-go)](https://pkg.go.dev/github.com/sagernet/quic-go)
77
[![Code Coverage](https://img.shields.io/codecov/c/github/quic-go/quic-go/master.svg?style=flat-square)](https://codecov.io/gh/quic-go/quic-go/)
88
[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/quic-go.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:quic-go)
99

@@ -49,4 +49,4 @@ quic-go always aims to support the latest two Go releases.
4949

5050
## Contributing
5151

52-
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/quic-go/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.
52+
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/sagernet/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.

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ please bring it to our attention right away!
88
## Reporting a Vulnerability
99

1010
If you find a vulnerability that may affect live deployments -- for example, by exposing
11-
a remote execution exploit -- please [**report privately**](https://github.com/quic-go/quic-go/security/advisories/new).
11+
a remote execution exploit -- please [**report privately**](https://github.com/sagernet/quic-go/security/advisories/new).
1212
Please **DO NOT file a public issue**.
1313

1414
If the issue is an implementation weakness that cannot be immediately exploited or
1515
something not yet deployed, just discuss it openly.
1616

1717
## Reporting a non security bug
1818

19-
For non-security bugs, please simply file a GitHub [issue](https://github.com/quic-go/quic-go/issues/new).
19+
For non-security bugs, please simply file a GitHub [issue](https://github.com/sagernet/quic-go/issues/new).

buffer_pool.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package quic
33
import (
44
"sync"
55

6-
"github.com/quic-go/quic-go/internal/protocol"
6+
"github.com/sagernet/quic-go/internal/protocol"
77
)
88

99
type packetBuffer struct {

buffer_pool_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package quic
33
import (
44
"testing"
55

6-
"github.com/quic-go/quic-go/internal/protocol"
6+
"github.com/sagernet/quic-go/internal/protocol"
77

88
"github.com/stretchr/testify/require"
99
)

client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"errors"
77
"net"
88

9-
"github.com/quic-go/quic-go/internal/protocol"
9+
"github.com/sagernet/quic-go/internal/protocol"
1010
)
1111

1212
// make it possible to mock connection ID for initial generation in the tests

closed_conn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net"
66
"sync/atomic"
77

8-
"github.com/quic-go/quic-go/internal/utils"
8+
"github.com/sagernet/quic-go/internal/utils"
99
)
1010

1111
// A closedLocalConn is a connection that we closed locally.

closed_conn_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"net"
55
"testing"
66

7-
"github.com/quic-go/quic-go/internal/utils"
7+
"github.com/sagernet/quic-go/internal/utils"
88

99
"github.com/stretchr/testify/require"
1010
)

config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55
"time"
66

7-
"github.com/quic-go/quic-go/internal/protocol"
8-
"github.com/quic-go/quic-go/quicvarint"
7+
"github.com/sagernet/quic-go/internal/protocol"
8+
"github.com/sagernet/quic-go/quicvarint"
99
)
1010

1111
// Clone clones a Config.

config_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/quic-go/quic-go/internal/protocol"
11-
"github.com/quic-go/quic-go/logging"
12-
"github.com/quic-go/quic-go/quicvarint"
10+
"github.com/sagernet/quic-go/internal/protocol"
11+
"github.com/sagernet/quic-go/logging"
12+
"github.com/sagernet/quic-go/quicvarint"
1313

1414
"github.com/stretchr/testify/require"
1515
)

0 commit comments

Comments
 (0)