mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-03 03:47:40 +03:00
Fix client close
This commit is contained in:
parent
2208da1d86
commit
a6fa7ada6e
1 changed files with 4 additions and 0 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue