update dependencies (#3539)

This commit is contained in:
fatedier
2023-07-21 14:34:44 +08:00
committed by GitHub
parent 46ff40543a
commit 3235addaaa
6 changed files with 146 additions and 833 deletions

View File

@@ -70,7 +70,7 @@ type Service struct {
kcpListener net.Listener
// Accept connections using quic
quicListener quic.Listener
quicListener *quic.Listener
// Accept connections using websocket
websocketListener net.Listener
@@ -499,7 +499,7 @@ func (svr *Service) HandleListener(l net.Listener) {
}
}
func (svr *Service) HandleQUICListener(l quic.Listener) {
func (svr *Service) HandleQUICListener(l *quic.Listener) {
// Listen for incoming connections from client.
for {
c, err := l.Accept(context.Background())