1*2fe8fb19SBen Gras /* $NetBSD: types.h,v 1.15 2005/12/26 19:01:47 perry Exp $ */ 2*2fe8fb19SBen Gras 3*2fe8fb19SBen Gras /* 4*2fe8fb19SBen Gras * Sun RPC is a product of Sun Microsystems, Inc. and is provided for 5*2fe8fb19SBen Gras * unrestricted use provided that this legend is included on all tape 6*2fe8fb19SBen Gras * media and as a part of the software program in whole or part. Users 7*2fe8fb19SBen Gras * may copy or modify Sun RPC without charge, but are not authorized 8*2fe8fb19SBen Gras * to license or distribute it to anyone else except as part of a product or 9*2fe8fb19SBen Gras * program developed by the user. 10*2fe8fb19SBen Gras * 11*2fe8fb19SBen Gras * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE 12*2fe8fb19SBen Gras * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR 13*2fe8fb19SBen Gras * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. 14*2fe8fb19SBen Gras * 15*2fe8fb19SBen Gras * Sun RPC is provided with no support and without any obligation on the 16*2fe8fb19SBen Gras * part of Sun Microsystems, Inc. to assist in its use, correction, 17*2fe8fb19SBen Gras * modification or enhancement. 18*2fe8fb19SBen Gras * 19*2fe8fb19SBen Gras * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE 20*2fe8fb19SBen Gras * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC 21*2fe8fb19SBen Gras * OR ANY PART THEREOF. 22*2fe8fb19SBen Gras * 23*2fe8fb19SBen Gras * In no event will Sun Microsystems, Inc. be liable for any lost revenue 24*2fe8fb19SBen Gras * or profits or other special, indirect and consequential damages, even if 25*2fe8fb19SBen Gras * Sun has been advised of the possibility of such damages. 26*2fe8fb19SBen Gras * 27*2fe8fb19SBen Gras * Sun Microsystems, Inc. 28*2fe8fb19SBen Gras * 2550 Garcia Avenue 29*2fe8fb19SBen Gras * Mountain View, California 94043 30*2fe8fb19SBen Gras * 31*2fe8fb19SBen Gras * from: @(#)types.h 1.18 87/07/24 SMI 32*2fe8fb19SBen Gras * @(#)types.h 2.3 88/08/15 4.0 RPCSRC 33*2fe8fb19SBen Gras */ 34*2fe8fb19SBen Gras 35*2fe8fb19SBen Gras /* 36*2fe8fb19SBen Gras * Rpc additions to <sys/types.h> 37*2fe8fb19SBen Gras */ 38*2fe8fb19SBen Gras #ifndef _RPC_TYPES_H_ 39*2fe8fb19SBen Gras #define _RPC_TYPES_H_ 40*2fe8fb19SBen Gras 41*2fe8fb19SBen Gras #include <sys/types.h> 42*2fe8fb19SBen Gras 43*2fe8fb19SBen Gras typedef int32_t bool_t; 44*2fe8fb19SBen Gras typedef int32_t enum_t; 45*2fe8fb19SBen Gras 46*2fe8fb19SBen Gras typedef uint32_t rpcprog_t; 47*2fe8fb19SBen Gras typedef uint32_t rpcvers_t; 48*2fe8fb19SBen Gras typedef uint32_t rpcproc_t; 49*2fe8fb19SBen Gras typedef uint32_t rpcprot_t; 50*2fe8fb19SBen Gras typedef uint32_t rpcport_t; 51*2fe8fb19SBen Gras typedef int32_t rpc_inline_t; 52*2fe8fb19SBen Gras 53*2fe8fb19SBen Gras #define __dontcare__ -1 54*2fe8fb19SBen Gras 55*2fe8fb19SBen Gras #ifndef FALSE 56*2fe8fb19SBen Gras # define FALSE (0) 57*2fe8fb19SBen Gras #endif 58*2fe8fb19SBen Gras #ifndef TRUE 59*2fe8fb19SBen Gras # define TRUE (1) 60*2fe8fb19SBen Gras #endif 61*2fe8fb19SBen Gras #ifndef NULL 62*2fe8fb19SBen Gras # define NULL 0 63*2fe8fb19SBen Gras #endif 64*2fe8fb19SBen Gras 65*2fe8fb19SBen Gras #define mem_alloc(bsize) calloc((size_t)1, bsize) 66*2fe8fb19SBen Gras #define mem_free(ptr, bsize) free(ptr) 67*2fe8fb19SBen Gras 68*2fe8fb19SBen Gras #include <sys/time.h> 69*2fe8fb19SBen Gras #include <netconfig.h> 70*2fe8fb19SBen Gras 71*2fe8fb19SBen Gras /* 72*2fe8fb19SBen Gras * The netbuf structure is defined here, because NetBSD only uses it inside 73*2fe8fb19SBen Gras * the RPC code. It's in <xti.h> on SVR4, but it would be confusing to 74*2fe8fb19SBen Gras * have an xti.h, since NetBSD does not support XTI/TLI. 75*2fe8fb19SBen Gras */ 76*2fe8fb19SBen Gras 77*2fe8fb19SBen Gras /* 78*2fe8fb19SBen Gras * The netbuf structure is used for transport-independent address storage. 79*2fe8fb19SBen Gras */ 80*2fe8fb19SBen Gras struct netbuf { 81*2fe8fb19SBen Gras unsigned int maxlen; 82*2fe8fb19SBen Gras unsigned int len; 83*2fe8fb19SBen Gras void *buf; 84*2fe8fb19SBen Gras }; 85*2fe8fb19SBen Gras 86*2fe8fb19SBen Gras /* 87*2fe8fb19SBen Gras * The format of the addres and options arguments of the XTI t_bind call. 88*2fe8fb19SBen Gras * Only provided for compatibility, it should not be used. 89*2fe8fb19SBen Gras */ 90*2fe8fb19SBen Gras 91*2fe8fb19SBen Gras struct t_bind { 92*2fe8fb19SBen Gras struct netbuf addr; 93*2fe8fb19SBen Gras unsigned int qlen; 94*2fe8fb19SBen Gras }; 95*2fe8fb19SBen Gras 96*2fe8fb19SBen Gras /* 97*2fe8fb19SBen Gras * Internal library and rpcbind use. This is not an exported interface, do 98*2fe8fb19SBen Gras * not use. 99*2fe8fb19SBen Gras */ 100*2fe8fb19SBen Gras struct __rpc_sockinfo { 101*2fe8fb19SBen Gras int si_af; 102*2fe8fb19SBen Gras int si_proto; 103*2fe8fb19SBen Gras int si_socktype; 104*2fe8fb19SBen Gras int si_alen; 105*2fe8fb19SBen Gras }; 106*2fe8fb19SBen Gras 107*2fe8fb19SBen Gras #endif /* !_RPC_TYPES_H_ */ 108