"Fossies" - the Fresh Open Source Software Archive 
Member "nss_ldap-265/ldap-service.h" (6 Nov 2009, 2177 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-service.h,v 2.17 2005/05/20 05:30:42 lukeh Exp $
21 */
22
23 #ifndef _LDAP_NSS_LDAP_LDAP_SERVICE_H
24 #define _LDAP_NSS_LDAP_LDAP_SERVICE_H
25
26 /*
27 * Determine the canonical name of the service with _nss_ldap_getrdnvalue(),
28 * and assign any values of "cn" which do NOT match this canonical name
29 * as aliases.
30 *
31 * You can use the ec_state in the context to derive multiple service
32 * entries from one LDAP entry. See the example in draft-...-nis-schema-xx.txt.
33 *
34 */
35
36
37 static NSS_STATUS _nss_ldap_parse_serv (LDAPMessage * e,
38 ldap_state_t * pvt,
39 void *result,
40 char *buffer, size_t buflen);
41
42 #ifdef HAVE_NSSWITCH_H
43 static NSS_STATUS _nss_ldap_getservbyname_r (nss_backend_t * be,
44 void *fakeargs);
45 static NSS_STATUS _nss_ldap_getservbyport_r (nss_backend_t * be,
46 void *fakeargs);
47 static NSS_STATUS _nss_ldap_setservent_r (nss_backend_t * be, void *fakeargs);
48 static NSS_STATUS _nss_ldap_endservent_r (nss_backend_t * be, void *fakeargs);
49 static NSS_STATUS _nss_ldap_getservent_r (nss_backend_t * be, void *fakeargs);
50
51 nss_backend_t *_nss_ldap_services_constr (const char *db_name,
52 const char *src_name,
53 const char *cfg_args);
54 #endif /* !HAVE_NSS_H */
55
56 #endif /* _LDAP_NSS_LDAP_LDAP_SERVICE_H */