I could not find any libraries that C provides to use RPC. I need to use RPC in C. Is there a way if there is no library support? I am looking for a non-blocking implementation.
Asked
Active
Viewed 3,934 times
2
-
2There are many variants of RPC, from the old Sun variant (now [ONC-RPC](http://en.wikipedia.org/wiki/ONC_RPC)), to modern variants such as [XML-RPC](http://en.wikipedia.org/wiki/Xml-rpc). – Some programmer dude Aug 06 '12 at 10:02
-
2Your question is vague; there is a lot out there on RPC: [http://stackoverflow.com/questions/2526227/c-c-rpc-tutorial-for-linux](http://stackoverflow.com/questions/2526227/c-c-rpc-tutorial-for-linux), or a simple Google search:[http://www.google.com/search?rls=en&q=rpc+in+c](http://www.google.com/search?rls=en&q=rpc+in+c). Could you be more specific in what you are looking for? – cegfault Aug 06 '12 at 10:06
-
1can you make your question more specific? – askmish Aug 06 '12 at 10:09
-
Can some one point me to a link where we have a example of a non-blocking RPC supported on Linux. – j10 Aug 06 '12 at 10:11
2 Answers
1
A very nice implementation of RPC using the rpcgen; presumeably the best C library for RPC implementation is provided by tuitorialpoint.
Check it out.

Shimanyi Valentino
- 483
- 6
- 11