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