commons_go/matcher/packet/packet.go
jackdaw@loafle.com eb02693cf5 .
2017-04-10 20:14:12 +09:00

14 lines
165 B
Go

package packet
type Packet struct {
Buffer []byte
Len int
}
func NewPacket(buf []byte, len int) *Packet {
return &Packet{
Buffer: buf,
Len: len,
}
}