Home | History | Annotate | Line # | Download | only in rpc
rpc_com.h revision 1.2
      1  1.2  perry /*	$NetBSD: rpc_com.h,v 1.2 2005/02/03 04:39:32 perry Exp $	*/
      2  1.1   fvdl 
      3  1.1   fvdl /*
      4  1.1   fvdl  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
      5  1.1   fvdl  * unrestricted use provided that this legend is included on all tape
      6  1.1   fvdl  * media and as a part of the software program in whole or part.  Users
      7  1.1   fvdl  * may copy or modify Sun RPC without charge, but are not authorized
      8  1.1   fvdl  * to license or distribute it to anyone else except as part of a product or
      9  1.1   fvdl  * program developed by the user.
     10  1.1   fvdl  *
     11  1.1   fvdl  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
     12  1.1   fvdl  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
     13  1.1   fvdl  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
     14  1.1   fvdl  *
     15  1.1   fvdl  * Sun RPC is provided with no support and without any obligation on the
     16  1.1   fvdl  * part of Sun Microsystems, Inc. to assist in its use, correction,
     17  1.1   fvdl  * modification or enhancement.
     18  1.1   fvdl  *
     19  1.1   fvdl  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
     20  1.1   fvdl  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
     21  1.1   fvdl  * OR ANY PART THEREOF.
     22  1.1   fvdl  *
     23  1.1   fvdl  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
     24  1.1   fvdl  * or profits or other special, indirect and consequential damages, even if
     25  1.1   fvdl  * Sun has been advised of the possibility of such damages.
     26  1.1   fvdl  *
     27  1.1   fvdl  * Sun Microsystems, Inc.
     28  1.1   fvdl  * 2550 Garcia Avenue
     29  1.1   fvdl  * Mountain View, California  94043
     30  1.1   fvdl  */
     31  1.1   fvdl /*
     32  1.1   fvdl  * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc.
     33  1.1   fvdl  */
     34  1.1   fvdl 
     35  1.1   fvdl /*
     36  1.1   fvdl  * rpc_com.h, Common definitions for both the server and client side.
     37  1.1   fvdl  * All for the topmost layer of rpc
     38  1.1   fvdl  */
     39  1.1   fvdl 
     40  1.1   fvdl #ifndef _RPC_RPCCOM_H
     41  1.1   fvdl #define	_RPC_RPCCOM_H
     42  1.1   fvdl 
     43  1.1   fvdl #include <sys/cdefs.h>
     44  1.1   fvdl 
     45  1.1   fvdl /* #pragma ident	"@(#)rpc_com.h	1.11	93/07/05 SMI" */
     46  1.1   fvdl 
     47  1.1   fvdl /*
     48  1.1   fvdl  * The max size of the transport, if the size cannot be determined
     49  1.1   fvdl  * by other means.
     50  1.1   fvdl  */
     51  1.1   fvdl #define	RPC_MAXDATASIZE 9000
     52  1.1   fvdl #define	RPC_MAXADDRSIZE 1024
     53  1.1   fvdl 
     54  1.1   fvdl __BEGIN_DECLS
     55  1.2  perry bool_t rpc_control(int, void *);
     56  1.1   fvdl __END_DECLS
     57  1.1   fvdl 
     58  1.1   fvdl /*
     59  1.1   fvdl  * Operations for rpc_control().
     60  1.1   fvdl  */
     61  1.1   fvdl #define RPC_SVC_CONNMAXREC_SET	0	/* set max rec size, enable nonblock */
     62  1.1   fvdl #define RPC_SVC_CONNMAXREC_GET	1
     63  1.1   fvdl 
     64  1.1   fvdl #endif /* _RPC_RPCCOM_H */
     65