Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/nss/common.c
blob: 7a0f8e7c57af2bed14b9f672e0b6fd29c4f26fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
   common.c - common definitions

   Copyright (C) 2010 Arthur de Jong

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
   02110-1301 USA
*/

#include "config.h"

#include <errno.h>

#include "prototypes.h"
#include "common.h"
#include "compat/attrs.h"

/* global symbol to prevent NSS name lookups using this module */
int _nss_ldap_enablelookups=1;

#ifdef NSS_FLAVOUR_SOLARIS

nss_backend_t *nss_ldap_constructor(nss_backend_op_t *ops,size_t sizeofops)
{
  struct nss_ldap_backend *ldapbe;
  ldapbe=(struct nss_ldap_backend *)malloc(sizeof(struct nss_ldap_backend));
  if (ldapbe==NULL)
    return NULL;
  ldapbe->ops=ops;
  ldapbe->n_ops=sizeofops/sizeof(nss_backend_op_t);
  ldapbe->fp=NULL;
  return (nss_backend_t *)ldapbe;
}

nss_status_t nss_ldap_destructor(nss_backend_t *be,void UNUSED(*args))
{
  struct nss_ldap_backend *ldapbe=(struct nss_ldap_backend *)be;
  if (ldapbe->fp!=NULL)
    (void)tio_close(ldapbe->fp);
  free(ldapbe);
  return NSS_STATUS_SUCCESS;
}

#endif /* NSS_FLAVOUR_SOLARIS */