mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Deprecate stack buffer
This commit is contained in:
parent
d852e9c03d
commit
c68251b6d0
18 changed files with 28 additions and 399 deletions
|
@ -64,9 +64,7 @@ func (c *AssociatePacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err erro
|
|||
//warn:unsafe
|
||||
func (c *AssociatePacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
||||
destination := M.SocksaddrFromNet(addr)
|
||||
_buffer := buf.StackNewSize(3 + M.SocksaddrSerializer.AddrPortLen(destination) + len(p))
|
||||
defer common.KeepAlive(_buffer)
|
||||
buffer := common.Dup(_buffer)
|
||||
buffer := buf.NewSize(3 + M.SocksaddrSerializer.AddrPortLen(destination) + len(p))
|
||||
defer buffer.Release()
|
||||
common.Must(buffer.WriteZeroN(3))
|
||||
err = M.SocksaddrSerializer.WriteAddrPort(buffer, destination)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue