cbor-cpp
cbor-cpp copied to clipboard
CBOR C++ serialization library
For more detail please see https://lgtm.com/rules/1506091066025/
We're thinking of using this in a project but need to know the licensing terms.
It's too hard to use listener(visitor pattern) to process cbor decode result. So i change the run method to return a `CborObject` instead of emit event to listener. Anything wrong...
There are some memory issues in decoder.run() according to valgrind/memcheck. I looked at the decoder source and spotted two new unsigned char[_currentLength] statements (for string and bytes) that are not...
Trying to compile your library under Visual Studio - I was forced to change your log.h to use just plain `__FUNCTION__` macro instead of `__PRETTY_FUNCTION__`. Search on MSDN revealed this:...
This is CBOR byte stream I've used to test different types and values. I found problems with negative integer values < -16 and also not supported types boolean and null....
cmake --version cmake version 3.22.1 [ mkdir build; cd build; cmake .. ] cmake .. CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required): Compatibility with CMake < 2.8.12 will be removed from...
[cbor-cpp.patch](https://github.com/user-attachments/files/19791293/cbor-cpp.patch) ``` CMakeLists.txt | 2 +- src/listener_debug.cpp | 8 ++++++++ src/listener_debug.h | 4 ++++ src/log.h | 4 ++-- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index...