packet

package
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 10, 2018 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

View Source
const (

	// Handshake represents a handshake: request(client) <====> handshake response(server)
	Handshake = 0x01

	// HandshakeAck represents a handshake ack from client to server
	HandshakeAck = 0x02

	// Heartbeat represents a heartbeat
	Heartbeat = 0x03

	// Data represents a common data packet
	Data = 0x04

	// Kick represents a kick off packet
	Kick = 0x05 // disconnect message from server
)

Variables

View Source
var ErrWrongPacketType = errors.New("wrong packet type")

ErrWrongPacketType represents a wrong packet type.

Functions

This section is empty.

Types

type Packet

type Packet struct {
	Type   Type
	Length int
	Data   []byte
}

Packet represents a network packet.

func New

func New() *Packet

New create a Packet instance.

func (*Packet) String

func (p *Packet) String() string

String represents the Packet's in text mode.

type Type

type Type byte

Type represents the network packet's type such as: handshake and so on.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL