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