# helloworld-RPC **Repository Path**: khaunag/helloworld-RPC ## Basic Information - **Project Name**: helloworld-RPC - **Description**: No description available - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-02-05 - **Last Updated**: 2024-02-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README helloworld-RPC ============== A VERY simple rpc example to start with. master branch ------------- The RPC server returns the strings "Hello world" when called. xdr branch ---------- Demostrate the use of xdr. The RPC server swap the a,b in struct AB, and return it back. Usage ===== CMD --- \> make \> sudo ./server \> ./client localhost Output --------------- **master**: > Returned string=Hello world **XDR branch**: > Returned a=20,b=10 Reference ========= * http://people.cs.clemson.edu/~wayne/cpsc824/samples/simple_rpc/index.shtml * http://www.cs.cf.ac.uk/Dave/C/node34.html