req.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package client
  2. func (c *Conn) writeCommand(command byte) error {
  3. c.ResetSequence()
  4. return c.WritePacket([]byte{
  5. 0x01, //1 bytes long
  6. 0x00,
  7. 0x00,
  8. 0x00, //sequence
  9. command,
  10. })
  11. }
  12. func (c *Conn) writeCommandBuf(command byte, arg []byte) error {
  13. c.ResetSequence()
  14. length := len(arg) + 1
  15. data := make([]byte, length+4)
  16. data[4] = command
  17. copy(data[5:], arg)
  18. return c.WritePacket(data)
  19. }
  20. func (c *Conn) writeCommandStr(command byte, arg string) error {
  21. c.ResetSequence()
  22. length := len(arg) + 1
  23. data := make([]byte, length+4)
  24. data[4] = command
  25. copy(data[5:], arg)
  26. return c.WritePacket(data)
  27. }
  28. func (c *Conn) writeCommandUint32(command byte, arg uint32) error {
  29. c.ResetSequence()
  30. return c.WritePacket([]byte{
  31. 0x05, //5 bytes long
  32. 0x00,
  33. 0x00,
  34. 0x00, //sequence
  35. command,
  36. byte(arg),
  37. byte(arg >> 8),
  38. byte(arg >> 16),
  39. byte(arg >> 24),
  40. })
  41. }
  42. func (c *Conn) writeCommandStrStr(command byte, arg1 string, arg2 string) error {
  43. c.ResetSequence()
  44. data := make([]byte, 4, 6+len(arg1)+len(arg2))
  45. data = append(data, command)
  46. data = append(data, arg1...)
  47. data = append(data, 0)
  48. data = append(data, arg2...)
  49. return c.WritePacket(data)
  50. }