(command byte, arg string)
| 33 | } |
| 34 | |
| 35 | func (c *Conn) writeCommandStr(command byte, arg string) error { |
| 36 | return c.writeCommandBuf(command, utils.StringToByteSlice(arg)) |
| 37 | } |
| 38 | |
| 39 | func (c *Conn) writeCommandUint32(command byte, arg uint32) error { |
| 40 | c.ResetSequence() |
no test coverage detected