The Redcon API has been changed to better reflect the wants of the
community. THIS IS A BREAKING COMMIT... sorry, it's a one time thing.
The changes include:
1. All commands and responses use []byte rather than string for data.
2. The handler signature has been changed from:
func(conn redcon.Conn, args [][]string)
to:
func(conn redcon.Conn, cmd redcon.Command)
3. There's a new Reader and Writer types for reading commands and
writing responses.
Performance remains the same.