message.go 330 B

12345678910111213141516171819
  1. package constants
  2. // 消息类型
  3. type MessageFrameType uint8
  4. const (
  5. FrameData MessageFrameType = 0x0
  6. FramePing MessageFrameType = 0x1
  7. FrameErr MessageFrameType = 0x9
  8. FrameAck MessageFrameType = 0x2
  9. FrameNoAck MessageFrameType = 0x3
  10. )
  11. type ChatType int
  12. const (
  13. GroupChatType ChatType = iota + 1
  14. SingleChatType
  15. )