mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-02-14 19:01:52 +00:00
fix incorrect pool use
This commit is contained in:
parent
2d644eabc3
commit
6cbe56adfe
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ func (c *Core) ReadFrom(p []byte) (n int, from net.Addr, err error) {
|
|||
|
||||
func (c *Core) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
||||
buf := allocBytes(0)
|
||||
defer freeBytes(buf)
|
||||
defer func() { freeBytes(buf) }()
|
||||
buf = append(buf, typeSessionTraffic)
|
||||
buf = append(buf, p...)
|
||||
n, err = c.PacketConn.WriteTo(buf, addr)
|
||||
|
|
Loading…
Reference in a new issue