Documentation ¶
Index ¶
Constants ¶
View Source
const ( HeadLength = 4 MaxPacketSize = 64 * 1024 )
Codec constants.
Variables ¶
View Source
var ErrPacketSizeExcced = errors.New("codec: packet size exceed")
ErrPacketSizeExcced is the error used for encode/decode.
Functions ¶
func Encode ¶
Encode create a packet.Packet from the raw bytes slice and then encode to network bytes slice Protocol refs: https://github.com/NetEase/pomelo/wiki/Communication-Protocol
-<type>-|--------<length>--------|-<data>- --------|------------------------|-------- 1 byte packet type, 3 bytes packet data length(big end), and data segment
Types ¶
type Decoder ¶
type Decoder struct {
// contains filtered or unexported fields
}
A Decoder reads and decodes network data slice
func NewDecoder ¶
func NewDecoder() *Decoder
NewDecoder returns a new decoder that used for decode network bytes slice.
Click to show internal directories.
Click to hide internal directories.