Greenbone Vulnerability Management Libraries  21.4.2
ldaputils.h
Go to the documentation of this file.
1 /* Copyright (C) 2012-2021 Greenbone Networks GmbH
2  *
3  * SPDX-License-Identifier: GPL-2.0-or-later
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program 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
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19 
25 #ifndef _GVM_LDAPUTILS_H
26 #define _GVM_LDAPUTILS_H
27 
28 #include <glib.h>
29 
32 
40 {
41  gchar *ldap_host;
42  gchar *auth_dn;
43  gboolean allow_plaintext;
44 };
45 
46 int
48 
49 int
50 ldap_connect_authenticate (const gchar *, const gchar *,
51  /* ldap_auth_info_t */ void *, const gchar *);
52 
54 
56 ldap_auth_info_new (const gchar *, const gchar *, gboolean);
57 
58 #ifdef ENABLE_LDAP_AUTH
59 
60 #include <ldap.h>
61 
62 gchar *
63 ldap_auth_info_auth_dn (const ldap_auth_info_t, const gchar *);
64 
65 LDAP *
66 ldap_auth_bind (const gchar *, const gchar *, const gchar *, gboolean,
67  const gchar *);
68 
69 gboolean
70 ldap_auth_dn_is_good (const gchar *);
71 
72 #endif /* ENABLE_LDAP_AUTH */
73 
74 #endif /* not _GVM_LDAPUTILS_H */
int ldap_enable_debug()
Dummy function for enabling LDAP debugging for manager.
Definition: ldaputils.c:503
ldap_auth_info_t ldap_auth_info_new(const gchar *, const gchar *, gboolean)
Dummy function for manager.
Definition: ldaputils.c:523
struct ldap_auth_info * ldap_auth_info_t
Authentication schema and address type.
Definition: ldaputils.h:31
int ldap_connect_authenticate(const gchar *, const gchar *, void *, const gchar *)
Dummy function for Manager.
Definition: ldaputils.c:543
void ldap_auth_info_free(ldap_auth_info_t)
Dummy function for Manager.
Definition: ldaputils.c:560
Schema (dn) and info to use for a basic ldap authentication.
Definition: ldaputils.h:40
gboolean allow_plaintext
!Whether or not StartTLS is required.
Definition: ldaputils.h:43
gchar * ldap_host
Address of the ldap server, might include port.
Definition: ldaputils.h:41
gchar * auth_dn
DN to authenticate with.
Definition: ldaputils.h:42