ReactOS 0.4.15-dev-7788-g1ad9096
svc_auth_none.c
Go to the documentation of this file.
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/22 17:24:30 bfields Exp $
36 */
37
38#include <wintirpc.h>
39#include <rpc/rpc.h>
40
41//static bool_t svcauth_none_destroy();
42//static bool_t svcauth_none_wrap();
43
44static bool_t
46{
47 return (TRUE);
48}
49
50static bool_t
51svcauth_none_wrap(SVCAUTH *auth, XDR *xdrs, xdrproc_t xdr_func,
52 caddr_t xdr_ptr)
53{
54 return ((*xdr_func)(xdrs, xdr_ptr));
55}
56
57struct svc_auth_ops svc_auth_none_ops = {
61};
62
65 NULL,
66};
67
68enum auth_stat
69_svcauth_none(struct svc_req *rqst, struct rpc_msg *msg)
70{
72
73 return (AUTH_OK);
74}
#define msg(x)
Definition: auth_time.c:54
auth_stat
Definition: auth.h:144
@ AUTH_OK
Definition: auth.h:145
#define NULL
Definition: types.h:112
int32_t bool_t
Definition: types.h:101
#define TRUE
Definition: types.h:120
char * caddr_t
Definition: rosdhcp.h:36
SVCAUTH * xp_auth
Definition: svc.h:122
Definition: xdr.h:103
Definition: svc.h:132
SVCXPRT * rq_xprt
Definition: svc.h:139
static bool_t svcauth_none_wrap(SVCAUTH *auth, XDR *xdrs, xdrproc_t xdr_func, caddr_t xdr_ptr)
Definition: svc_auth_none.c:51
static bool_t svcauth_none_destroy(SVCAUTH *auth)
Definition: svc_auth_none.c:45
SVCAUTH svc_auth_none
Definition: svc_auth_none.c:63
enum auth_stat _svcauth_none(struct svc_req *rqst, struct rpc_msg *msg)
Definition: svc_auth_none.c:69
struct svc_auth_ops svc_auth_none_ops
Definition: svc_auth_none.c:57
bool_t(* xdrproc_t)(XDR *,...)
Definition: xdr.h:144