"Fossies" - the Fresh Open Source Software Archive 
Member "nss_ldap-265/ldap-proto.h" (6 Nov 2009, 2054 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-proto.h,v 2.17 2005/05/20 05:30:41 lukeh Exp $
21 */
22
23 #ifndef _LDAP_NSS_LDAP_LDAP_PROTO_H
24 #define _LDAP_NSS_LDAP_LDAP_PROTO_H
25
26 /*
27 Determine the canonical name of the protocol with _nss_ldap_getrdnvalue(),
28 and assign any values of "cn" which do NOT match this canonical name
29 as aliases.
30 */
31
32
33 static NSS_STATUS _nss_ldap_parse_proto (LDAPMessage * e,
34 ldap_state_t * pvt,
35 void *result,
36 char *buffer, size_t buflen);
37
38 #ifdef HAVE_NSSWITCH_H
39 static NSS_STATUS _nss_ldap_getprotobyname_r (nss_backend_t * be,
40 void *fakeargs);
41 static NSS_STATUS _nss_ldap_getprotobynumber_r (nss_backend_t * be,
42 void *fakeargs);
43 static NSS_STATUS _nss_ldap_setprotoent_r (nss_backend_t * be,
44 void *fakeargs);
45 static NSS_STATUS _nss_ldap_endprotoent_r (nss_backend_t * be,
46 void *fakeargs);
47 static NSS_STATUS _nss_ldap_getprotoent_r (nss_backend_t * be,
48 void *fakeargs);
49
50 nss_backend_t *_nss_ldap_protocols_constr (const char *db_name,
51 const char *src_name,
52 const char *cfg_args);
53 #endif /* HAVE_NSSWITCH_H */
54
55 #endif /* _LDAP_NSS_LDAP_LDAP_PROTO_H */