You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
144 B

  1. package ziface
  2. type Packet interface {
  3. Unpack(binaryData []byte) (IMessage, error)
  4. Pack(msg IMessage) ([]byte, error)
  5. GetHeadLen() uint32
  6. }