Search code examples
c++clinuxipcrpc

Any opensource C/C++ Libraries/Frameworks for RPC over pipes/internal linux sockets?


I am looking for a lightweight opensource library/framework preferably written in C/C++ (it doesn't have to support x languages and should be easy to understand and use.) which can be used to make RPC over internal linux sockets or pipes. In other words I am looking for an RPC possibility which can be run over some of the linux IPC mechanisms.

Thanks


Solution

  • Look at msgpack-rpc. It's easy and very simple RPC implementation.