1994-08-04 20:39:34 +00:00
|
|
|
/*
|
|
|
|
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
|
|
|
|
* unrestricted use provided that this legend is included on all tape
|
|
|
|
* media and as a part of the software program in whole or part. Users
|
|
|
|
* may copy or modify Sun RPC without charge, but are not authorized
|
|
|
|
* to license or distribute it to anyone else except as part of a product or
|
|
|
|
* program developed by the user.
|
1995-05-30 05:05:38 +00:00
|
|
|
*
|
1994-08-04 20:39:34 +00:00
|
|
|
* SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
|
1996-01-30 23:33:04 +00:00
|
|
|
* WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
1994-08-04 20:39:34 +00:00
|
|
|
* PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
|
1995-05-30 05:05:38 +00:00
|
|
|
*
|
1994-08-04 20:39:34 +00:00
|
|
|
* Sun RPC is provided with no support and without any obligation on the
|
|
|
|
* part of Sun Microsystems, Inc. to assist in its use, correction,
|
|
|
|
* modification or enhancement.
|
|
|
|
*
|
|
|
|
* SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
|
|
|
|
* INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
|
|
|
|
* OR ANY PART THEREOF.
|
|
|
|
*
|
|
|
|
* In no event will Sun Microsystems, Inc. be liable for any lost revenue
|
|
|
|
* or profits or other special, indirect and consequential damages, even if
|
|
|
|
* Sun has been advised of the possibility of such damages.
|
|
|
|
*
|
|
|
|
* Sun Microsystems, Inc.
|
|
|
|
* 2550 Garcia Avenue
|
|
|
|
* Mountain View, California 94043
|
1994-08-07 18:41:02 +00:00
|
|
|
*
|
1995-05-30 05:05:38 +00:00
|
|
|
* from: @(#)rpc.h 1.9 88/02/08 SMI
|
1994-08-07 18:41:02 +00:00
|
|
|
* from: @(#)rpc.h 2.4 89/07/11 4.0 RPCSRC
|
1999-08-27 23:45:13 +00:00
|
|
|
* $FreeBSD$
|
1994-08-04 20:39:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* rpc.h, Just includes the billions of rpc header files necessary to
|
|
|
|
* do remote procedure calling.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1984, Sun Microsystems, Inc.
|
|
|
|
*/
|
1994-08-07 18:41:02 +00:00
|
|
|
#ifndef _RPC_RPC_H
|
|
|
|
#define _RPC_RPC_H
|
1994-08-04 20:39:34 +00:00
|
|
|
|
|
|
|
#include <rpc/types.h> /* some typedefs */
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
/* external data representation interfaces */
|
|
|
|
#include <rpc/xdr.h> /* generic (de)serializer */
|
|
|
|
|
|
|
|
/* Client side only authentication */
|
|
|
|
#include <rpc/auth.h> /* generic authenticator (client side) */
|
|
|
|
|
|
|
|
/* Client side (mostly) remote procedure call */
|
|
|
|
#include <rpc/clnt.h> /* generic rpc stuff */
|
|
|
|
|
|
|
|
/* semi-private protocol headers */
|
|
|
|
#include <rpc/rpc_msg.h> /* protocol for rpc messages */
|
|
|
|
#include <rpc/auth_unix.h> /* protocol for unix style cred */
|
|
|
|
/*
|
1995-05-30 05:05:38 +00:00
|
|
|
* Uncomment-out the next line if you are building the rpc library with
|
1994-08-04 20:39:34 +00:00
|
|
|
* DES Authentication (see the README file in the secure_rpc/ directory).
|
|
|
|
*/
|
1995-02-24 08:57:45 +00:00
|
|
|
#include <rpc/auth_des.h> /* protocol for des style cred */
|
1994-08-04 20:39:34 +00:00
|
|
|
|
|
|
|
/* Server side only remote procedure callee */
|
|
|
|
#include <rpc/svc.h> /* service manager and multiplexer */
|
|
|
|
#include <rpc/svc_auth.h> /* service side authenticator */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* COMMENT OUT THE NEXT INCLUDE (or add to the #ifndef) IF RUNNING ON
|
|
|
|
* A VERSION OF UNIX THAT USES SUN'S NFS SOURCE. These systems will
|
|
|
|
* already have the structures defined by <rpc/netdb.h> included in <netdb.h>.
|
|
|
|
*/
|
|
|
|
/* routines for parsing /etc/rpc */
|
|
|
|
|
|
|
|
struct rpcent {
|
|
|
|
char *r_name; /* name of server for this rpc program */
|
|
|
|
char **r_aliases; /* alias list */
|
|
|
|
int r_number; /* rpc program number */
|
|
|
|
};
|
|
|
|
|
1994-08-07 18:41:02 +00:00
|
|
|
__BEGIN_DECLS
|
|
|
|
extern struct rpcent *getrpcbyname __P((char *));
|
|
|
|
extern struct rpcent *getrpcbynumber __P((int));
|
|
|
|
extern struct rpcent *getrpcent __P((void));
|
1996-12-30 13:59:41 +00:00
|
|
|
extern int getrpcport __P((char *host, int prognum, int versnum, int proto));
|
1994-08-07 18:41:02 +00:00
|
|
|
extern void setrpcent __P((int));
|
|
|
|
extern void endrpcent __P((void));
|
1996-12-30 13:59:41 +00:00
|
|
|
|
|
|
|
extern int bindresvport __P((int, struct sockaddr_in *));
|
2000-01-26 09:02:42 +00:00
|
|
|
extern int bindresvport_sa __P((int, struct sockaddr *));
|
1996-12-30 13:59:41 +00:00
|
|
|
extern int get_myaddress __P((struct sockaddr_in *));
|
1994-08-07 18:41:02 +00:00
|
|
|
__END_DECLS
|
1994-08-04 20:39:34 +00:00
|
|
|
|
1994-08-07 18:41:02 +00:00
|
|
|
#endif /* !_RPC_RPC_H */
|