home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OpenStep 4.2J (Developer)
/
os42jdev.iso
/
NextDeveloper
/
Headers
/
bsd
/
rpc
/
pmap_rmt.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-01-23
|
502b
|
30 lines
/* @(#)pmap_rmt.h 1.1 88/03/04 4.0NFSSRC SMI */
/*
* Copyright (c) 1988 by Sun Microsystems, Inc.
* 1.2 88/02/08 SMI
*/
/*
* Structures and XDR routines for parameters to and replies from
* the portmapper remote-call-service.
*/
struct rmtcallargs {
u_long prog, vers, proc, arglen;
caddr_t args_ptr;
xdrproc_t xdr_args;
};
bool_t xdr_rmtcall_args();
struct rmtcallres {
u_long *port_ptr;
u_long resultslen;
caddr_t results_ptr;
xdrproc_t xdr_results;
};
bool_t xdr_rmtcallres();