mirror of
https://github.com/fumiama/WireGold.git
synced 2025-09-26 19:21:11 +08:00
13 lines
248 B
Go
13 lines
248 B
Go
package head
|
|
|
|
import (
|
|
"github.com/fumiama/orbyte/pbuf"
|
|
)
|
|
|
|
var packetPool = pbuf.NewBufferPool[Packet]()
|
|
|
|
// selectPacket 从池中取出一个 Packet
|
|
func selectPacket(buf ...byte) *PacketItem {
|
|
return (*PacketItem)(packetPool.NewBuffer(buf))
|
|
}
|