[relay] Update GO version and QUIC version (#4736)

- Go 1.25.5
- QUIC 0.55.0
This commit is contained in:
Zoltan Papp
2026-01-07 16:30:29 +01:00
committed by GitHub
parent afcdef6121
commit 8722b79799
78 changed files with 311 additions and 340 deletions

View File

@@ -30,11 +30,11 @@ func (a Addr) String() string {
}
type Conn struct {
session quic.Connection
session *quic.Conn
ctx context.Context
}
func NewConn(session quic.Connection) net.Conn {
func NewConn(session *quic.Conn) net.Conn {
return &Conn{
session: session,
ctx: context.Background(),