Loading RELEASE.md +6 −0 Original line number Diff line number Diff line Loading @@ -16,6 +16,12 @@ v0.7.0 v0.8.0 ------ * Updated to Kinetic Protocol v3.0.5 (NOT compatible with v2.x simulator/devices or earlier) * Added asynchronous/non-blocking execution option to all operations (GET/PUT/DELETE/GETKEYRANGE). * A given operation is carried out in asynchronous mode if a closure callback with optional data is supplied. * ByteArray and ByteBuffer types are now supplied directly in the byte_array.h public interface file. v0.8.1 ------ * Added GETLOG operation. * Added thread-safety to allow multiple client threads within the same session. **(IN PROGRESS)** config/Doxyfile +1 −1 Original line number Diff line number Diff line Loading @@ -38,7 +38,7 @@ PROJECT_NAME = kinetic-c # could be handy for archiving the generated documentation or if some version # control system is used. PROJECT_NUMBER = "v0.8.0" PROJECT_NUMBER = "v0.8.1-beta" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a Loading config/VERSION +1 −1 Original line number Diff line number Diff line 0.8.0 0.8.1-beta src/lib/kinetic_logger.c +4 −2 Original line number Diff line number Diff line Loading @@ -914,10 +914,12 @@ void KineticLogger_LogProtobuf(int log_level, const KineticProto_Message* msg) // * protobuf_c_boolean has_messages; // * ProtobufCBinaryData messages; if (cmd->body->getLog->has_messages) { BYTES_TO_CSTRING(tmpBuf, uint8_t* buf = malloc(cmd->body->getLog->messages.len * 4); BYTES_TO_CSTRING(buf, cmd->body->getLog->messages, 0, cmd->body->getLog->messages.len); KineticLogger_LogPrintf(log_level, "%smessages: '%s'", _indent, tmpBuf); KineticLogger_LogPrintf(log_level, "%smessages: '%s'", _indent, buf); free(buf); } // * KineticProto_Command_GetLog_Limits* limits; Loading test/support/system_test_fixture.h +0 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,6 @@ #ifndef SYSTEM_TEST_HOST #define SYSTEM_TEST_HOST "localhost" // #define SYSTEM_TEST_HOST "10.138.123.65" #endif typedef struct _SystemTestFixture { Loading Loading
RELEASE.md +6 −0 Original line number Diff line number Diff line Loading @@ -16,6 +16,12 @@ v0.7.0 v0.8.0 ------ * Updated to Kinetic Protocol v3.0.5 (NOT compatible with v2.x simulator/devices or earlier) * Added asynchronous/non-blocking execution option to all operations (GET/PUT/DELETE/GETKEYRANGE). * A given operation is carried out in asynchronous mode if a closure callback with optional data is supplied. * ByteArray and ByteBuffer types are now supplied directly in the byte_array.h public interface file. v0.8.1 ------ * Added GETLOG operation. * Added thread-safety to allow multiple client threads within the same session. **(IN PROGRESS)**
config/Doxyfile +1 −1 Original line number Diff line number Diff line Loading @@ -38,7 +38,7 @@ PROJECT_NAME = kinetic-c # could be handy for archiving the generated documentation or if some version # control system is used. PROJECT_NUMBER = "v0.8.0" PROJECT_NUMBER = "v0.8.1-beta" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a Loading
src/lib/kinetic_logger.c +4 −2 Original line number Diff line number Diff line Loading @@ -914,10 +914,12 @@ void KineticLogger_LogProtobuf(int log_level, const KineticProto_Message* msg) // * protobuf_c_boolean has_messages; // * ProtobufCBinaryData messages; if (cmd->body->getLog->has_messages) { BYTES_TO_CSTRING(tmpBuf, uint8_t* buf = malloc(cmd->body->getLog->messages.len * 4); BYTES_TO_CSTRING(buf, cmd->body->getLog->messages, 0, cmd->body->getLog->messages.len); KineticLogger_LogPrintf(log_level, "%smessages: '%s'", _indent, tmpBuf); KineticLogger_LogPrintf(log_level, "%smessages: '%s'", _indent, buf); free(buf); } // * KineticProto_Command_GetLog_Limits* limits; Loading
test/support/system_test_fixture.h +0 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,6 @@ #ifndef SYSTEM_TEST_HOST #define SYSTEM_TEST_HOST "localhost" // #define SYSTEM_TEST_HOST "10.138.123.65" #endif typedef struct _SystemTestFixture { Loading