libjson-rpc-cpp icon indicating copy to clipboard operation
libjson-rpc-cpp copied to clipboard

C++ framework for json-rpc (json remote procedure call)

Results 21 libjson-rpc-cpp issues
Sort by recently updated
recently updated
newest added

now windows has vcpkg when support vcpkg.

enhancement
pullrequest-welcome
feature-request

Hi, I'm wrinting to you to inquire about the "id" management in RpcProtocolClient class. The comment mention that : "The id starts at 1 and is incremented for each request....

enhancement

sun_path field of sockaddr_un is 108 bytes on linux, but 104 bytes on Mac. The below patch fixes strncpy() writing over the buffer end on Mac. ``` diff --git a/src/jsonrpccpp/client/connectors/unixdomainsocketclient.cpp...

bug

Hello, Latest debian package is 0.7.0-2.1 (for deb 12). Is it planned to upgrade to a newer version ? Thanks,

I can't get libjson-rpc-cpp to build in MinGW using the 32-bit toolchain and the pre-built Windows binaries. This is the current error I'm getting; long story short it's an undefined...

This change should allow server to accept RPC req with optional params

Tried running stubclient as per given in the instructions. Errors below: Platform: Ubuntu machine where all the dependencies are installed as per instructions. ``` ➜ examples git:(master) ✗ g++ stubclient.cpp...

Catch-3 has been released and it is somewhat compatible with Catch2 but it seems to have some changes nevertheless. Notably, `catch2/catch.hpp` seems to have been removed: ``` /usr/lib/ccache/bin/x86_64-pc-linux-gnu-g++ -DHTTP_TESTING -DSTUBGEN_TESTING...

Hello, I am finding that I have the following race condition: in `server/connectors/unixdomainsocketserver.cpp` we have: ``` bool UnixDomainSocketServer::InitializeListener() { ... // Set to non-blocking mode fcntl(this->socket_fd, F_SETFL, FNDELAY); ``` So...

bug

Hi, I have problem with joining threads. I tried milions of ideas and solution for example: atomic operation for is_runnning bool in threaded server, checking joinable and many many more....