add 2 encoding algorithms SPRINTZ and RLBE and 1 compression algorithm LZMA2 (#82)

diff --git a/client/protocol.go b/client/protocol.go
index 7282a3e..883f9ae 100644
--- a/client/protocol.go
+++ b/client/protocol.go
@@ -45,6 +45,11 @@
 	GORILLA_V1       TSEncoding = 6
 	REGULAR          TSEncoding = 7
 	GORILLA          TSEncoding = 8
+    ZIGZAG           TSEncoding = 9
+    FREQ             TSEncoding = 10
+    CHIMP            TSEncoding = 11
+    SPRINTZ          TSEncoding = 12
+    RLBE             TSEncoding = 13
 )
 
 const (
@@ -57,6 +62,7 @@
 	PLA          TSCompressionType = 6
 	LZ4          TSCompressionType = 7
 	ZSTD		 TSCompressionType = 8
+	LZMA2        TSCompressionType = 9
 )
 
 // TSStatusCode
@@ -195,4 +201,4 @@
 	CqAlreadyActive           int32 = 1401
 	CqAlreadyExist            int32 = 1402
 	CqUpdateLastExecTimeError int32 = 1403
-)
+)
\ No newline at end of file