Fix client close

This commit is contained in:
世界 2022-07-14 18:41:55 +08:00
parent 2208da1d86
commit a6fa7ada6e
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -846,6 +846,10 @@ func (c *clientPacketConn) Upstream() any {
return c.Conn
}
func (c *clientPacketConn) Close() error {
return common.Close(c.Conn)
}
func Blake3KeyedHash(reader io.Reader) io.Reader {
key := make([]byte, 32)
common.Must1(io.ReadFull(reader, key))