"Fossies" - the Fresh Open Source Software Archive 
Member "nss_ldap-265/ldap-pwd.h" (6 Nov 2009, 1785 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: ldap-pwd.h,v 2.20 2005/05/20 05:30:42 lukeh Exp $
21 */
22
23 #ifndef _LDAP_NSS_LDAP_LDAP_PWD_H
24 #define _LDAP_NSS_LDAP_LDAP_PWD_H
25
26 static NSS_STATUS _nss_ldap_parse_pw (LDAPMessage * e,
27 ldap_state_t * pvt,
28 void *result,
29 char *buffer, size_t buflen);
30
31 #ifdef HAVE_NSSWITCH_H
32 static NSS_STATUS _nss_ldap_getpwnam_r (nss_backend_t * be, void *fakeargs);
33 static NSS_STATUS _nss_ldap_getpwuid_r (nss_backend_t * be, void *fakeargs);
34 static NSS_STATUS _nss_ldap_setpwent_r (nss_backend_t * be, void *fakeargs);
35 static NSS_STATUS _nss_ldap_endpwent_r (nss_backend_t * be, void *fakeargs);
36 static NSS_STATUS _nss_ldap_getpwent_r (nss_backend_t * be, void *fakeargs);
37
38 nss_backend_t *_nss_ldap_passwd_constr (const char *db_name,
39 const char *src_name,
40 const char *cfg_args);
41 #endif
42
43 #endif /* _LDAP_NSS_LDAP_LDAP_PWD_H */