Testing Programs Using Low-Level Raw RPC
Two pseudo-RPC interface routines bypass all the network software. The routines shown in clnt_raw_create() and svc_raw_create() do not use any real transport.
Note - Do not use raw mode on production systems. Raw mode is intended as a debugging aid only. Raw mode is not MT safe.
The following code example is compiled and linked using the following makefile:
all: raw CFLAGS += -g raw: raw.o cc -g -o raw raw.o -lnsl |
Example 4-19 Simple Program Using Raw RPC
Note the following points about the example:
The server must be created before the client.
svc_raw_create() has no parameters.
The server is not registered with rpcbind. The last parameter to svc_reg() is (struct netconfig *) NULL.
svc_run() is not called.
All the RPC calls occur within the same thread of control.