jsonrpc-c
jsonrpc-c copied to clipboard
JSON-RPC in C (server only for now)
fix for https://github.com/hmng/jsonrpc-c/issues/14
The cJSON project has a different definition which conflict with this project. For example: jsonrpc-c/cJON.h #define cJSON_NUMBER 3 cJSON/cJON.h #define cJSON_NUMBER (1
since the server is embedded in jsonrpc-c it is not usable when using an own server already. When separating server and parsing the lib becomes more flexible.
This fixes autoconfigure issues I had on x86
There are compile warnings with current version jsonrpc-c. Fix them. ``` jsonrpc-c.c:38:7: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result] write(fd, response, strlen(response)); ^ jsonrpc-c.c:39:7: warning: ignoring...
When packaging this as rpm, rpmlint report states: ``` [ 53s] libjsonrpcc0.x86_64: W: shared-lib-calls-exit /usr/lib64/libjsonrpcc.so.0.0.0 exit@GLIBC_2.2.5 [ 53s] This library package calls exit() or _exit(), probably in a non-fork() [...
Hi 1.First I got error due to older autoreconf on our RHEL6.4. Due to some versioning conflict, I get a build error with AM_PROG_AR. It appears when using m4_pattern_allow or...
Is JSON-RPC Version 2.0 supported? Official specifications of Version 2.0 says: 2.0 always has a member named "jsonrpc" with a String value of "2.0" (http://www.jsonrpc.org/specification#compatibility). But jsonrpc-c responds without a...
Hi, can you answer me if jsonrpc-c support notification and how use it? Like this JSON-RPC v.2 : http://en.wikipedia.org/wiki/JSON-RPC#Version_2.0 Thanks