mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
38 lines
692 B
Go
38 lines
692 B
Go
package net
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/common/alloc"
|
|
)
|
|
|
|
type Packet interface {
|
|
Destination() Destination
|
|
Chunk() *alloc.Buffer // First chunk of this commnunication
|
|
MoreChunks() bool
|
|
}
|
|
|
|
func NewPacket(dest Destination, firstChunk *alloc.Buffer, moreChunks bool) Packet {
|
|
return &packetImpl{
|
|
dest: dest,
|
|
data: firstChunk,
|
|
moreData: moreChunks,
|
|
}
|
|
}
|
|
|
|
type packetImpl struct {
|
|
dest Destination
|
|
data *alloc.Buffer
|
|
moreData bool
|
|
}
|
|
|
|
func (packet *packetImpl) Destination() Destination {
|
|
return packet.dest
|
|
}
|
|
|
|
func (packet *packetImpl) Chunk() *alloc.Buffer {
|
|
return packet.data
|
|
}
|
|
|
|
func (packet *packetImpl) MoreChunks() bool {
|
|
return packet.moreData
|
|
}
|