rpcgen - an RPC protocol compiler
The 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 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 -T option, it also generates the RPC dispatch table in proto_tbl.i
The utility can also generate sample client and server files that can be customized to suit a particular application. The -Sc , -
If option -I is set, the server created can be started both by the port monitors (for example, inetd(8)) or by itself. When it is started by a port monitor, it creates servers only for the transport for which the file descriptor 0 was passed. The name of the transport may be specified by setting up the environment variable NLSPROVIDER When the server generated by is executed, it creates server handles for all the transports specified in NETPATH environment variable, or if it is unset, it creates server handles for all the visible transports from /etc/netconfig file. Note: the transports are chosen at run time and not at compile time. 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.
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:
A server can use the dispatch table to check authorization and then to execute the service routine; a client library may use it to deal with the details of storage management and XDR data conversion.
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 Sx EXAMPLES section below for examples of usage. When is executed with the -s option, it creates servers for that particular class of transports. When executed with the -n option, it creates a server for the transport specified by netid If infile is not specified, accepts the standard input.
The C preprocessor, cc -E is run on the input file before it is actually interpreted by . For each type of output file, defines a special preprocessor symbol for use by the programmer:
Any line beginning with ``%'' is passed directly into the output file, uninterpreted by . To specify the path name of the C preprocessor use -Y flag.
For every data type referred to in infile 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.
Note: in order to provide backwards compatibility with the older on the Fx 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.
If there are no pending client requests, the inetd(8) servers exit after 120 seconds (default). The default can be changed with the -K option. All the error messages for inetd(8) servers are always logged with syslog(3).
Note: Contrary to some systems, in Fx this option is needed to generate servers that can be invoked through portmonitors and inetd(8).
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, should be used with -K 0
Note: Contrary to some systems, in Fx this option is needed to generate servers that can be monitored.
If the -I option has been specified, -P is turned off automatically. Fl s Ar nettype 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. Fl Sc Generate sample client code that uses remote procedure calls. Fl Sm Generate a sample Makefile which can be used for compiling the application. Fl Ss Generate sample server code that uses remote procedure calls. Fl t Compile into RPC dispatch table. Fl T Generate the code to support RPC dispatch tables.
The options -c -h -l -m -s -Sc , - -
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 -D TEST server side stubs for all the transport belonging to the class datagram_n to standard output, use:
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
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |