# HG changeset patch # User František Kučera # Date 1576271979 -3600 # Node ID c4e54e9be412c4a752a09914078c59e82a95355d # Parent a8ccd2b19faa5794644e751da690d89a488e1ed6 support signed integers, negative numbers; binary format change: encode numbers as SLEB128 diff -r a8ccd2b19faa -r c4e54e9be412 include/relpipe/protocol/typedefs.h --- a/include/relpipe/protocol/typedefs.h Fri Dec 13 14:55:06 2019 +0100 +++ b/include/relpipe/protocol/typedefs.h Fri Dec 13 22:19:39 2019 +0100 @@ -28,7 +28,7 @@ namespace protocol { using octet_t = uint8_t; -using integer_t = uint64_t; +using integer_t = int64_t; using boolean_t = bool; using string_t = std::wstring;