Main index | Section 1 | 日本語 | Options |
The
rpcgen
utility is normally used as in the first synopsis where
it takes an input file and generates three output files.
If the
infile
is named
proto.x,
then
rpcgen
generates a header in
proto.h,
XDR routines in
proto_xdr.c,
server-side stubs in
proto_svc.c,
and client-side stubs in
proto_clnt.c.
With the
The
rpcgen
utility can also generate sample client and server files
that can be customized to suit a particular application.
The
If option
The second synopsis provides special features which allow for the creation of more sophisticated RPC servers. These features include support for user provided #defines and RPC dispatch tables. The entries in the RPC dispatch table contain:
The other three synopses shown above are used when
one does not want to generate all the output files,
but only a particular one.
See the
EXAMPLES
section below for examples of
rpcgen
usage.
When
rpcgen
is executed with the
The C preprocessor, cc -E is run on the input file before it is actually interpreted by rpcgen. For each type of output file, rpcgen defines a special preprocessor symbol for use by the rpcgen programmer:
RPC_HDR | |
defined when compiling into headers | |
RPC_XDR | |
defined when compiling into XDR routines | |
RPC_SVC | |
defined when compiling into server-side stubs | |
RPC_CLNT | |
defined when compiling into client-side stubs | |
RPC_TBL | |
defined when compiling into RPC dispatch tables | |
Any line beginning with
"%"
is passed directly into the output file,
uninterpreted by
rpcgen.
To specify the path name of the C preprocessor use
For every data type referred to in infile, rpcgen assumes that there exists a routine with the string xdr_ prepended to the name of the data type. If this routine does not exist in the RPC/XDR library, it must be provided. Providing an undefined data type allows customization of xdr(3) routines.
| |
Generate all files, including sample files. | |
| |
Backward compatibility mode. Generate transport specific RPC code for older versions of the operating system. | |
| |
Compile into XDR routines. | |
| |
Generate ANSI C code. This is always done, the flag is only provided for backwards compatibility. | |
| |
Define a symbol name. Equivalent to the #define directive in the source. If no value is given, value is defined as 1. This option may be specified more than once. | |
| |
Compile into C data-definitions (a header).
| |
| |
Size at which to start generating inline code.
This option is useful for optimization.
The default size is 5.
Note: in order to provide backwards compatibility with the older rpcgen on the FreeBSD platform, the default is actually 0 (which means that inline code generation is disabled by default). You must specify a non-zero value explicitly to override this default. | |
| |
Compile support for
inetd(8)
in the server side stubs.
Such servers can be self-started or can be started by
inetd(8).
When the server is self-started, it backgrounds itself by default.
A special define symbol
RPC_SVC_FG
can be used to run the
server process in foreground, or the user may simply compile without
the
If there are no pending client requests, the
inetd(8)
servers exit after 120 seconds (default).
The default can be changed with the
Note: Contrary to some systems, in FreeBSD this option is needed to generate servers that can be invoked through portmonitors and inetd(8). | |
| |
By default, services created using
rpcgen
and invoked through
port monitors wait 120 seconds
after servicing a request before exiting.
That interval can be changed using the
When monitoring for a server,
some portmonitors
always
spawn a new process in response to a service request.
If it is known that a server will be used with such a monitor, the
server should exit immediately on completion.
For such servers,
rpcgen
should be used with
| |
| |
Compile into client-side stubs. | |
| |
When the servers are started in foreground, use syslog(3) to log the server errors instead of printing them on the standard error. | |
| |
Compile into server-side stubs, but do not generate a "main" routine. This option is useful for doing callback-routines and for users who need to write their own "main" routine to do initialization. | |
| |
Generate multithread-safe stubs for passing arguments and results between rpcgen generated code and user written code. This option is useful for users who want to use threads in their code. However, the rpc_svc_calls(3) functions are not yet MT-safe, which means that rpcgen generated server-side code will not be MT-safe. | |
| |
Allow procedures to have multiple arguments. It also uses the style of parameter passing that closely resembles C. So, when passing an argument to a remote procedure, you do not have to pass a pointer to the argument, but can pass the argument itself. This behavior is different from the old style of rpcgen generated code. To maintain backward compatibility, this option is not the default. | |
| |
Compile into server-side stubs for the transport specified by netid. There should be an entry for netid in the netconfig database. This option may be specified more than once, so as to compile a server that serves multiple transports. | |
| |
Specify the name of the output file.
If none is specified,
standard output is used
| |
| |
Compile support for
port monitors
in the server side stubs.
Note: Contrary to some systems, in FreeBSD this option is needed to generate servers that can be monitored.
If the
| |
| |
Compile into server-side stubs for all the transports belonging to the class nettype. The supported classes are netpath, visible, circuit_n, circuit_v, datagram_n, datagram_v, tcp, and udp (see rpc(3) for the meanings associated with these classes). This option may be specified more than once. Note: the transports are chosen at run time and not at compile time. | |
| |
Generate sample client code that uses remote procedure calls. | |
| |
Generate a sample Makefile which can be used for compiling the application. | |
| |
Generate sample server code that uses remote procedure calls. | |
| |
Compile into RPC dispatch table. | |
| |
Generate the code to support
RPC
dispatch tables.
The options
| |
| |
Give the name of the directory where rpcgen will start looking for the C-preprocessor. | |
example% rpcgen -T prot.x
generates all the five files: prot.h, prot_clnt.c, prot_svc.c, prot_xdr.c and prot_tbl.i.
The following example sends the C data-definitions (header) to the standard output.
example% rpcgen -h prot.x
To send the test version of the
example% rpcgen -s datagram_n -DTEST prot.x
To create the server side stubs for the transport indicated by netid tcp, use:
example% rpcgen -n tcp -o prot_svc.c prot.x
RPCGEN (1) | September 2, 2005 |
Main index | Section 1 | 日本語 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.