"Fossies" - the Fresh Open Source Software Archive 
Member "nss_ldap-265/irs-nss.h" (6 Nov 2009, 2031 Bytes) of package /linux/privat/old/nss_ldap-265.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 /* Copyright (C) 1997-2005 Luke Howard.
2 This file is part of the nss_ldap library.
3 Contributed by Luke Howard, <lukeh@padl.com>, 1997.
4
5 The nss_ldap library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
9
10 The nss_ldap library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public
16 License along with the nss_ldap library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19
20 $Id: irs-nss.h,v 2.20 2005/05/20 05:30:40 lukeh Exp $
21 */
22
23 #ifndef _LDAP_NSS_LDAP_IRS_H
24 #define _LDAP_NSS_LDAP_IRS_H
25
26 #ifdef HAVE_IRS_H
27 /*
28 * This header is only needed when using the BSD Information
29 * Retrieval Service. It is not necessary for the Solaris or
30 * GNU nameservice switch modules.
31 */
32 #include <irs.h>
33 #endif
34
35 struct irs_gr *irs_ldap_gr __P ((struct irs_acc *));
36 struct irs_pw *irs_ldap_pw __P ((struct irs_acc *));
37 struct irs_sv *irs_ldap_sv __P ((struct irs_acc *));
38 struct irs_pr *irs_ldap_pr __P ((struct irs_acc *));
39 struct irs_ho *irs_ldap_ho __P ((struct irs_acc *));
40 struct irs_nw *irs_ldap_nw __P ((struct irs_acc *));
41 /* not done yet */
42 struct irs_ng *irs_ldap_ng __P ((struct irs_acc *));
43
44 /* Keep namespace clean. */
45 #define irs_ldap_acc __irs_ldap_acc
46
47 struct irs_acc *irs_ldap_acc __P ((const char *));
48
49 #define make_group_list __make_group_list
50
51 extern int make_group_list (struct irs_gr *, const char *,
52 gid_t, gid_t *, int *);
53
54 #ifdef HAVE_USERSEC_H /* aka AIX */
55 #define IRS_EXPORT
56 #else
57 #define IRS_EXPORT static
58 #endif
59
60 #endif /* _LDAP_NSS_LDAP_IRS_H */