chore: Bump quic-go to v0.27.0 (#4782)

This commit is contained in:
世界
2022-05-12 13:25:17 +08:00
committed by GitHub
parent 57d27c1b58
commit 4b4e99bdb2
3 changed files with 4 additions and 4 deletions

View File

@@ -184,7 +184,7 @@ type fakeCloseQuicListener struct {
// server on which Accept would be called with non-empty contexts
// (mind that the default net listeners' Accept doesn't take a context argument)
// sounds way too rare for us to sacrifice efficiency here.
func (fcql *fakeCloseQuicListener) Accept(_ context.Context) (quic.EarlySession, error) {
func (fcql *fakeCloseQuicListener) Accept(_ context.Context) (quic.EarlyConnection, error) {
conn, err := fcql.sharedQuicListener.Accept(fcql.context)
if err == nil {
return conn, nil