00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "apr.h"
00018 #include "apr_dso.h"
00019 #include "apu.h"
00020
00021 #ifndef APU_INTERNAL_H
00022 #define APU_INTERNAL_H
00023
00024 #if APU_DSO_BUILD
00025
00026 #ifdef __cplusplus
00027 extern "C" {
00028 #endif
00029
00030
00031
00032
00033
00034
00035 apr_status_t apu_dso_init(apr_pool_t *pool);
00036
00037 apr_status_t apu_dso_mutex_lock(void);
00038 apr_status_t apu_dso_mutex_unlock(void);
00039
00040 apr_status_t apu_dso_load(apr_dso_handle_t **dso, apr_dso_handle_sym_t *dsoptr, const char *module,
00041 const char *modsym, apr_pool_t *pool);
00042
00043 #if APR_HAS_LDAP
00044
00045
00046
00047 struct apr__ldap_dso_fntable {
00048 int (*info)(apr_pool_t *pool, apr_ldap_err_t **result_err);
00049 int (*init)(apr_pool_t *pool, LDAP **ldap, const char *hostname,
00050 int portno, int secure, apr_ldap_err_t **result_err);
00051 int (*ssl_init)(apr_pool_t *pool, const char *cert_auth_file,
00052 int cert_file_type, apr_ldap_err_t **result_err);
00053 int (*ssl_deinit)(void);
00054 int (*get_option)(apr_pool_t *pool, LDAP *ldap, int option,
00055 void *outvalue, apr_ldap_err_t **result_err);
00056 int (*set_option)(apr_pool_t *pool, LDAP *ldap, int option,
00057 const void *invalue, apr_ldap_err_t **result_err);
00058 apr_status_t (*rebind_init)(apr_pool_t *pool);
00059 apr_status_t (*rebind_add)(apr_pool_t *pool, LDAP *ld,
00060 const char *bindDN, const char *bindPW);
00061 apr_status_t (*rebind_remove)(LDAP *ld);
00062 };
00063
00064 #endif
00065
00066 #ifdef __cplusplus
00067 }
00068 #endif
00069
00070 #endif
00071
00072 #endif
00073