Documentation ¶
Index ¶
- type Agent
- type Conn
- type ConnSet
- type MsgParser
- func (p *MsgParser) Pack(data ...[]byte) ([]byte, error)
- func (p *MsgParser) Read(conn *TCPConn) ([]byte, error)
- func (p *MsgParser) SetByteOrder(littleEndian bool)
- func (p *MsgParser) SetMsgLen(lenMsgLen int, minMsgLen int32, maxMsgLen int32)
- func (p *MsgParser) Write(conn *TCPConn, args ...[]byte) error
- type Processor
- type TCPClient
- type TCPConn
- func (tcpConn *TCPConn) Close()
- func (tcpConn *TCPConn) Destroy()
- func (tcpConn *TCPConn) LocalAddr() net.Addr
- func (tcpConn *TCPConn) Read(b []byte) (int, error)
- func (tcpConn *TCPConn) ReadMsg() ([]byte, error)
- func (tcpConn *TCPConn) RemoteAddr() net.Addr
- func (tcpConn *TCPConn) Write(b []byte)
- func (tcpConn *TCPConn) WriteMsg(args ...[]byte) error
- type TCPServer
- type WSClient
- type WSConn
- type WSHandler
- type WSServer
- type WebsocketConnSet
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MsgParser ¶
type MsgParser struct {
// contains filtered or unexported fields
}
-------------- | len | data | --------------
func NewMsgParser ¶
func NewMsgParser() *MsgParser
func (*MsgParser) SetByteOrder ¶
It's dangerous to call the method on reading or writing
type Processor ¶
type Processor interface { // Route must goroutine safe Route(msg *cstruct.RecvMsg, userData interface{}) error // Unmarshal must goroutine safe Unmarshal(data []byte) (*cstruct.RecvMsg, error) // Marshal must goroutine safe Marshal(recv *cstruct.RecvMsg, mainCmdID uint16, subCmdID uint16, msg interface{}) ([][]byte, error) }
type TCPClient ¶
type TCPConn ¶
func (*TCPConn) RemoteAddr ¶
type TCPServer ¶
type WSClient ¶
type WSConn ¶
func (*WSConn) RemoteAddr ¶
type WSServer ¶
type WebsocketConnSet ¶
Source Files ¶
Click to show internal directories.
Click to hide internal directories.