]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Make prototypes available where needed
authorOndřej Kuzník <ondra@openldap.org>
Tue, 19 Feb 2019 10:26:39 +0000 (10:26 +0000)
committerOndřej Kuzník <ondra@openldap.org>
Tue, 19 Feb 2019 10:26:39 +0000 (10:26 +0000)
libraries/libldap/tls2.c
servers/slapd/config.c
servers/slapd/proto-slap.h

index 1a96b62c3c872654de6b227d7ac903e4baeb9b6e..869de2eb50920e1498063543f682da27c2531bd1 100644 (file)
@@ -76,6 +76,9 @@ static oid_name oids[] = {
 
 #ifdef HAVE_TLS
 
+LDAP_F(int) ldap_pvt_tls_check_hostname LDAP_P(( LDAP *ld, void *s, const char *name_in ));
+LDAP_F(int) ldap_pvt_tls_get_peercert LDAP_P(( void *s, struct berval *der ));
+
 void
 ldap_pvt_tls_ctx_free ( void *c )
 {
index 778365fd07361e91e74e7f410eb77ed3c4ab3738..2816455a34464ad4c70c5fc2baae34725261d878 100644 (file)
@@ -48,6 +48,7 @@
 #endif
 #include "lutil.h"
 #include "lutil_ldap.h"
+#include "ldif.h"
 #include "config.h"
 
 #ifdef _WIN32
index 4bfdcf930bf6a7326009ae05776d7b035ff2c7f4..e33e3b7d98261f33c2365e9c56f0a0a222b69ccf 100644 (file)
@@ -755,6 +755,7 @@ LDAP_SLAPD_F (int) bindconf_unparse LDAP_P((
 LDAP_SLAPD_F (int) bindconf_tls_set LDAP_P((
        slap_bindconf *bc, LDAP *ld ));
 LDAP_SLAPD_F (void) bindconf_free LDAP_P(( slap_bindconf *bc ));
+LDAP_SLAPD_F (void) slap_client_keepalive LDAP_P(( LDAP *ld, slap_keepalive *sk ));
 LDAP_SLAPD_F (int) slap_client_connect LDAP_P(( LDAP **ldp, slap_bindconf *sb ));
 LDAP_SLAPD_F (int) config_generic_wrapper LDAP_P(( Backend *be,
        const char *fname, int lineno, int argc, char **argv ));
@@ -1683,6 +1684,9 @@ LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
        slap_ssf_t ssf, /* relative strength of external security */
        struct berval *authid );        /* asserted authentication id */
 
+LDAP_SLAPD_F (int) slap_sasl_cbinding( Connection *c,
+       struct berval *cbv );
+
 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );