• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/nsswitch/
1/*
2   Unix SMB/CIFS implementation.
3
4   A common place to work out how to define NSS_STATUS on various
5   platforms.
6
7   Copyright (C) Tim Potter 2000
8
9   This library is free software; you can redistribute it and/or
10   modify it under the terms of the GNU Lesser General Public
11   License as published by the Free Software Foundation; either
12   version 3 of the License, or (at your option) any later version.
13
14   This library is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17   Library General Public License for more details.
18
19   You should have received a copy of the GNU Lesser General Public License
20   along with this program.  If not, see <http://www.gnu.org/licenses/>.
21*/
22
23#ifndef _NSSWITCH_NSS_H
24#define _NSSWITCH_NSS_H
25
26#ifdef HAVE_NSS_COMMON_H
27
28/*
29 * Sun Solaris
30 */
31
32#include "nsswitch/winbind_nss_solaris.h"
33
34#elif HAVE_NSS_H
35
36/*
37 * Linux (glibc)
38 */
39
40#include "nsswitch/winbind_nss_linux.h"
41
42#elif HAVE_NS_API_H
43
44/*
45 * SGI IRIX
46 */
47
48#include "nsswitch/winbind_nss_irix.h"
49
50#elif defined(HPUX) && defined(HAVE_NSSWITCH_H)
51
52/* HP-UX 11 */
53
54#include "nsswitch/winbind_nss_hpux.h"
55
56#elif defined(__NetBSD__) && defined(HAVE_GETPWENT_R)
57
58/*
59 * NetBSD 3 and newer
60 */
61
62#include "nsswitch/winbind_nss_netbsd.h"
63
64#else /* Nothing's defined. Neither gnu nor netbsd nor sun nor hp */
65
66typedef enum
67{
68  NSS_STATUS_SUCCESS=0,
69  NSS_STATUS_NOTFOUND=1,
70  NSS_STATUS_UNAVAIL=2,
71  NSS_STATUS_TRYAGAIN=3
72} NSS_STATUS;
73
74#endif
75
76#endif /* _NSSWITCH_NSS_H */
77