blob: 5206e307899e95b48875cf58f93f2d3b1e8eeac9 (
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
|
/*
solnss.c - Solaris specific NSS interface functions
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"
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;
}
|