chiark / gitweb /
doc: Document summary values of TOFU_STATS
[gnupg2.git] / dirmngr / ldap-wrapper.h
1 /* ldap-wrapper.h - Interface to an LDAP access wrapper.
2  * Copyright (C) 2010 Free Software Foundation, Inc.
3  *
4  * This file is part of GnuPG.
5  *
6  * GnuPG is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * GnuPG is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see <https://www.gnu.org/licenses/>.
18  */
19
20 #ifndef LDAP_WRAPPER_H
21 #define LDAP_WRAPPER_H
22
23 #include <ksba.h>
24
25 /* ldap-wrapper.c or ldap-wrapper-ce.c */
26 void ldap_wrapper_launch_thread (void);
27 void ldap_wrapper_wait_connections (void);
28 void ldap_wrapper_release_context (ksba_reader_t reader);
29 void ldap_wrapper_connection_cleanup (ctrl_t);
30 gpg_error_t ldap_wrapper (ctrl_t ctrl, ksba_reader_t *reader,
31                           const char *argv[]);
32
33
34 /* dirmngr_ldap.c  */
35 #ifndef USE_LDAPWRAPPER
36 int ldap_wrapper_main (char **argv, estream_t outstream);
37 #endif
38
39
40 #endif /*LDAP_WRAPPER_H*/