pkg/util/net: fix quic streams leak (#3246)

This commit is contained in:
fatedier
2023-01-10 10:19:37 +08:00
committed by GitHub
parent b03f0ad1e6
commit 5cfbb976f4

View File

@@ -211,3 +211,8 @@ func (conn *wrapQuicStream) RemoteAddr() net.Addr {
}
return (*net.TCPAddr)(nil)
}
func (conn *wrapQuicStream) Close() error {
conn.Stream.CancelRead(0)
return conn.Stream.Close()
}