svc_auth.h revision 21673
150476Speter/*
25622Swollman * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3298107Sgjb * unrestricted use provided that this legend is included on all tape
45622Swollman * media and as a part of the software program in whole or part.  Users
550881Smarkm * may copy or modify Sun RPC without charge, but are not authorized
655955Srgrimes * to license or distribute it to anyone else except as part of a product or
774870Sru * program developed by the user.
850881Smarkm *
950881Smarkm * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
105622Swollman * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
11233294Sstas * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
12233294Sstas *
13233294Sstas * Sun RPC is provided with no support and without any obligation on the
145622Swollman * part of Sun Microsystems, Inc. to assist in its use, correction,
155622Swollman * modification or enhancement.
1650881Smarkm *
17 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19 * OR ANY PART THEREOF.
20 *
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
24 *
25 * Sun Microsystems, Inc.
26 * 2550 Garcia Avenue
27 * Mountain View, California  94043
28 *
29 *	from: @(#)svc_auth.h 1.6 86/07/16 SMI
30 *	from: @(#)svc_auth.h	2.1 88/07/29 4.0 RPCSRC
31 *	$FreeBSD: head/include/rpc/svc_auth.h 21673 1997-01-14 07:20:47Z jkh $
32 */
33
34/*
35 * svc_auth.h, Service side of rpc authentication.
36 *
37 * Copyright (C) 1984, Sun Microsystems, Inc.
38 */
39
40#ifndef _RPC_SVCAUTH_H
41#define _RPC_SVCAUTH_H
42
43/*
44 * Server side authenticator
45 */
46__BEGIN_DECLS
47extern enum auth_stat _authenticate __P((struct svc_req *, struct rpc_msg *));
48__END_DECLS
49
50#endif /* !_RPC_SVCAUTH_H */
51