hmng / jsonrpc-c

JSON-RPC in C (server only for now)
MIT License
217 stars 97 forks source link

jsonrpc-c support notification? #4

Open mathben opened 11 years ago

mathben commented 11 years ago

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

hmng commented 11 years ago

It's not supported right now, an answer is always sent. But it's easy to implement: just check for the presence of an "id" field, and if absent, change the invoke_procedure() to NOT call send_result, just ignore whatever the procedure returned. I might look at it these days.