]> git.decadent.org.uk Git - nfs-utils.git/blob - support/rpc/svc_auth_none.c
remove some files.
[nfs-utils.git] / support / rpc / svc_auth_none.c
1 /*
2   svc_auth_none.c
3
4   Copyright (c) 2000 The Regents of the University of Michigan.
5   All rights reserved.
6
7   Copyright (c) 2000 Dug Song <dugsong@UMICH.EDU>.
8   All rights reserved, all wrongs reversed.
9
10   Redistribution and use in source and binary forms, with or without
11   modification, are permitted provided that the following conditions
12   are met:
13
14   1. Redistributions of source code must retain the above copyright
15      notice, this list of conditions and the following disclaimer.
16   2. Redistributions in binary form must reproduce the above copyright
17      notice, this list of conditions and the following disclaimer in the
18      documentation and/or other materials provided with the distribution.
19   3. Neither the name of the University nor the names of its
20      contributors may be used to endorse or promote products derived
21      from this software without specific prior written permission.
22
23   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
24   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26   DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30   BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
35   $Id: svc_auth_none.c,v 1.1 2004/10/19 00:23:05 neilbrown Exp $
36  */
37
38 #include <rpc/rpc.h>
39
40 static bool_t   svcauth_none_destroy();
41 static bool_t   svcauth_none_wrap();
42
43 struct svc_auth_ops svc_auth_none_ops = {
44         svcauth_none_wrap,
45         svcauth_none_wrap,
46         svcauth_none_destroy
47 };
48
49 SVCAUTH svc_auth_none = {
50         &svc_auth_none_ops,
51         NULL,
52 };
53
54 static bool_t
55 svcauth_none_destroy(SVCAUTH *auth)
56 {
57         return (TRUE);
58 }
59
60 static bool_t
61 svcauth_none_wrap(SVCAUTH *auth, XDR *xdrs, xdrproc_t xdr_func,
62                   caddr_t xdr_ptr)
63 {
64         return ((*xdr_func)(xdrs, xdr_ptr));
65 }
66
67 enum auth_stat
68 _svcauth_none(struct svc_req *rqst, struct rpc_msg *msg)
69 {
70         rqst->rq_xprt->xp_auth = &svc_auth_none;
71
72         return (AUTH_OK);
73 }