libreplace: Add tests for connect and gethostbyname.
[Samba.git] / source4 / nsswitch / winbind_nss_solaris.h
blob941b3e66dfc0cad156db5fbf79052200ad30ad40
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind daemon for ntdom nss module
6 Copyright (C) Tim Potter 2000
8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 3 of the License, or (at your option) any later version.
13 This library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Library General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef _WINBIND_NSS_SOLARIS_H
23 #define _WINBIND_NSS_SOLARIS_H
25 /* Solaris has a broken nss_common header file containing C++ reserved names. */
26 #ifndef __cplusplus
27 #undef class
28 #undef private
29 #undef public
30 #undef protected
31 #undef template
32 #undef this
33 #undef new
34 #undef delete
35 #undef friend
36 #endif
38 #include <nss_common.h>
41 TODO: we need to cleanup samba4's headers..
43 #ifndef __cplusplus
44 #define class #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
45 #define private #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
46 #define public #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
47 #define protected #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
48 #define template #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
49 #define this #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
50 #define new #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
51 #define delete #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
52 #define friend #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
53 #endif
56 #include <nss_dbdefs.h>
57 #include <nsswitch.h>
59 typedef nss_status_t NSS_STATUS;
61 #define NSS_STATUS_SUCCESS NSS_SUCCESS
62 #define NSS_STATUS_NOTFOUND NSS_NOTFOUND
63 #define NSS_STATUS_UNAVAIL NSS_UNAVAIL
64 #define NSS_STATUS_TRYAGAIN NSS_TRYAGAIN
66 /* The solaris winbind is implemented as a wrapper around the linux
67 version. */
69 NSS_STATUS _nss_winbind_setpwent(void);
70 NSS_STATUS _nss_winbind_endpwent(void);
71 NSS_STATUS _nss_winbind_getpwent_r(struct passwd* result, char* buffer,
72 size_t buflen, int* errnop);
73 NSS_STATUS _nss_winbind_getpwuid_r(uid_t, struct passwd*, char* buffer,
74 size_t buflen, int* errnop);
75 NSS_STATUS _nss_winbind_getpwnam_r(const char* name, struct passwd* result,
76 char* buffer, size_t buflen, int* errnop);
78 NSS_STATUS _nss_winbind_setgrent(void);
79 NSS_STATUS _nss_winbind_endgrent(void);
80 NSS_STATUS _nss_winbind_getgrent_r(struct group* result, char* buffer,
81 size_t buflen, int* errnop);
82 NSS_STATUS _nss_winbind_getgrnam_r(const char *name,
83 struct group *result, char *buffer,
84 size_t buflen, int *errnop);
85 NSS_STATUS _nss_winbind_getgrgid_r(gid_t gid,
86 struct group *result, char *buffer,
87 size_t buflen, int *errnop);
89 #endif /* _WINBIND_NSS_SOLARIS_H */