home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / utilities / utilss / sockets / include / rpc / h / pmap_rmt < prev    next >
Encoding:
Text File  |  1995-01-11  |  2.0 KB  |  69 lines

  1. /* -*-C-*-
  2.  *
  3.  * $Header: /ax/networking:include/rpc/pmap_rmt.h:networking  1.1  $
  4.  * $Source: /ax/networking:include/rpc/pmap_rmt.h: $
  5.  *
  6.  * Copyright (c) 1995 Acorn Computers Ltd., Cambridge, England
  7.  *
  8.  * $Log:    pmap_rmt.h,v $
  9.  * Revision 1.1  95/01/11  10:18:31  kwelton
  10.  * Initial revision
  11.  * 
  12.  */
  13.  
  14. /* @(#)pmap_rmt.h    2.1 88/07/29 4.0 RPCSRC; from 1.2 88/02/08 SMI */
  15. /*
  16.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  17.  * unrestricted use provided that this legend is included on all tape
  18.  * media and as a part of the software program in whole or part.  Users
  19.  * may copy or modify Sun RPC without charge, but are not authorized
  20.  * to license or distribute it to anyone else except as part of a product or
  21.  * program developed by the user.
  22.  * 
  23.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  24.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  25.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  26.  * 
  27.  * Sun RPC is provided with no support and without any obligation on the
  28.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  29.  * modification or enhancement.
  30.  * 
  31.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  32.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  33.  * OR ANY PART THEREOF.
  34.  * 
  35.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  36.  * or profits or other special, indirect and consequential damages, even if
  37.  * Sun has been advised of the possibility of such damages.
  38.  * 
  39.  * Sun Microsystems, Inc.
  40.  * 2550 Garcia Avenue
  41.  * Mountain View, California  94043
  42.  */
  43.  
  44. /*
  45.  * Structures and XDR routines for parameters to and replies from
  46.  * the portmapper remote-call-service.
  47.  *
  48.  * Copyright (C) 1986, Sun Microsystems, Inc.
  49.  */
  50.  
  51. struct rmtcallargs {
  52.     u_long prog, vers, proc, arglen;
  53.     caddr_t args_ptr;
  54.     xdrproc_t xdr_args;
  55. };
  56.  
  57. bool_t xdr_rmtcall_args();
  58.  
  59. struct rmtcallres {
  60.     u_long *port_ptr;
  61.     u_long resultslen;
  62.     caddr_t results_ptr;
  63.     xdrproc_t xdr_results;
  64. };
  65.  
  66. bool_t xdr_rmtcallres();
  67.  
  68. /* EOF pmap_rmt.h */
  69.