1 1.3 perry /* $NetBSD: nettype.h,v 1.3 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 * nettype.h, Nettype definitions. 37 1.1 fvdl * All for the topmost layer of rpc 38 1.1 fvdl * 39 1.1 fvdl */ 40 1.1 fvdl 41 1.1 fvdl #ifndef _RPC_NETTYPE_H 42 1.1 fvdl #define _RPC_NETTYPE_H 43 1.1 fvdl 44 1.1 fvdl #include <netconfig.h> 45 1.1 fvdl 46 1.1 fvdl #define _RPC_NONE 0 47 1.1 fvdl #define _RPC_NETPATH 1 48 1.1 fvdl #define _RPC_VISIBLE 2 49 1.1 fvdl #define _RPC_CIRCUIT_V 3 50 1.1 fvdl #define _RPC_DATAGRAM_V 4 51 1.1 fvdl #define _RPC_CIRCUIT_N 5 52 1.1 fvdl #define _RPC_DATAGRAM_N 6 53 1.1 fvdl #define _RPC_TCP 7 54 1.1 fvdl #define _RPC_UDP 8 55 1.1 fvdl 56 1.1 fvdl __BEGIN_DECLS 57 1.3 perry extern void *__rpc_setconf(const char *); 58 1.3 perry extern void __rpc_endconf(void *); 59 1.3 perry extern struct netconfig *__rpc_getconf(void *); 60 1.3 perry extern struct netconfig *__rpc_getconfip(const char *); 61 1.1 fvdl __END_DECLS 62 1.1 fvdl 63 1.1 fvdl #endif /* !_RPC_NETTYPE_H */ 64