Files
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

31 lines
540 B
C

/* @(#)pmap_rmt.h 1.1 94/10/31 SMI */
/*
* Structures and XDR routines for parameters to and replies from
* the portmapper remote-call-service.
*
* Copyright (C) 1986, Sun Microsystems, Inc.
*/
#ifndef _rpc_pmap_rmt_h
#define _rpc_pmap_rmt_h
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();
#endif /*!_rpc_pmap_rmt_h*/