~ubuntu-branches/ubuntu/trusty/libnss-ldap/trusty-proposed

« back to all changes in this revision

Viewing changes to ldap-bp.h

  • Committer: Bazaar Package Importer
  • Author(s): Richard A Nelson (Rick)
  • Date: 2007-05-14 19:40:00 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070514194000-40u9ndh540lgliqe
Tags: 255-1
Survived i386 and amd64, let it loose

Show diffs side-by-side

added added

removed removed

Lines of Context:
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-bp.h,v 2.18 2005/05/20 05:30:40 lukeh Exp $
21
 
 */
22
 
 
23
 
#ifndef _LDAP_NSS_LDAP_LDAP_BP_H
24
 
#define _LDAP_NSS_LDAP_LDAP_BP_H
25
 
 
26
 
/* I'm guessing here. This is certainly wrong. */
27
 
struct bootparams
28
 
{
29
 
  char *bp_name;
30
 
  char **bp_params;
31
 
};
32
 
 
33
 
 
34
 
static NSS_STATUS _nss_ldap_parse_bp (LDAPMessage * e,
35
 
                                      ldap_state_t * pvt,
36
 
                                      void *result,
37
 
                                      char *buffer, size_t buflen);
38
 
 
39
 
#ifdef HAVE_NSSWITCH_H
40
 
 
41
 
/*
42
 
   int parse_bootparams_entry(const char *bp_entry,
43
 
   char **bp_uniquehostname, char **bp_sharedhostname,
44
 
   char **bp_rootpath, char **bp_swappath, char **bp_dumppath,
45
 
   char **bp_execpath, char **bp_kvmpath);
46
 
 */
47
 
 
48
 
static NSS_STATUS _nss_ldap_getbootparamsbyname_r (nss_backend_t * be,
49
 
                                                   void *fakeargs);
50
 
 
51
 
nss_backend_t *_nss_ldap_bootparams_constr (const char *db_name,
52
 
                                            const char *src_name,
53
 
                                            const char *cfg_args);
54
 
 
55
 
#endif
56
 
 
57
 
#endif /* _LDAP_NSS_LDAP_LDAP_BP_H */