Skip to content

a remote procedure call (RPC) is an inter-process communication that allows a computer program to cause a subroutine or procedure to execute in another address space (commonly on another computer on a shared network) without the programmer explicitly coding the details for this remote interaction

Notifications You must be signed in to change notification settings

SharadSrc/RPCsocket

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A remote procedure call (RPC) is an inter-process communication that allows a computer program to cause a subroutine or procedure to execute in another address space 
(commonly on another computer on a shared network) without the programmer explicitly coding the details for this remote interaction

Steps:

1>> compiling the .x file with rpcgen
	
	rpcgen ll.x

2>> compiling the server file

	cc -o server llservice.c ll_svc.c ll_xdr.c

3>> compiling the client file

	cc -o client llclient.c ll_clnt.c ll_xr.c

4>> running the server

	./server

5>> running the client

	./client <server ip> <input data elements>

About

a remote procedure call (RPC) is an inter-process communication that allows a computer program to cause a subroutine or procedure to execute in another address space (commonly on another computer on a shared network) without the programmer explicitly coding the details for this remote interaction

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published