Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

c++

c

linux

rpc

ipc

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

like image 338
G.G. Avatar asked Sep 08 '11 14:09

G.G.


1 Answers

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

like image 112
qehgt Avatar answered Sep 28 '22 23:09

qehgt