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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
#include <httpd.h>
#include <http_core.h>
#include <http_config.h>
#include <apr_global_mutex.h>
#include <http_log.h>
#define ap_HOOK_check_user_id_t void
AP_DECLARE(void) ap_hook_check_authn(ap_HOOK_check_user_id_t *pf,
const char * const *aszPre,
const char * const *aszSucc,
int nOrder, int type) {
}
AP_DECLARE(apr_status_t) ap_register_auth_provider(apr_pool_t *pool,
const char *provider_group,
const char *provider_name,
const char *provider_version,
const void *provider,
int type) {
return 0;
}
AP_DECLARE(apr_status_t) ap_unixd_set_global_mutex_perms(apr_global_mutex_t *gmutex) {
return 0;
}
AP_DECLARE(const char *) ap_auth_type(request_rec *r) {
return "openid-connect";
}
AP_DECLARE(const char *) ap_auth_name(request_rec *r) {
return NULL;
}
AP_DECLARE(long) ap_get_client_block(request_rec * r, char * buffer,
apr_size_t bufsiz) {
return 0;
}
AP_DECLARE(char *) ap_getword(apr_pool_t *p, const char **line, char stop) {
return "";
}
AP_DECLARE(char *) ap_getword_conf(apr_pool_t *p, const char **line) {
return "";
}
AP_DECLARE(char *) ap_getword_white(apr_pool_t *p, const char **line) {
return 0;
}
AP_DECLARE(int) ap_hook_check_user_id(request_rec *r) {
return 0;
}
AP_DECLARE(int) ap_hook_auth_checker(request_rec *r) {
return 0;
}
AP_DECLARE(int) ap_hook_fixups(request_rec *r) {
return 0;
}
AP_DECLARE(void) ap_hook_post_config(
int (*post_config)(apr_pool_t *pool, apr_pool_t *p1, apr_pool_t *p2,
server_rec *s), const char * const *aszPre,
const char * const *aszSucc, int nOrder) {
}
AP_DECLARE(void) ap_hook_child_init(
void (*child_init)(apr_pool_t *p, server_rec *s),
const char * const *aszPre, const char * const *aszSucc, int nOrder) {
}
AP_DECLARE(int) ap_is_initial_req(request_rec *r) {
return 0;
}
#if MODULE_MAGIC_NUMBER_MAJOR >= 20100714
AP_DECLARE(void) ap_log_error_(const char *file, int line, int module_index, int level,
apr_status_t status, const server_rec *s, const char *fmt, ...) {
#else
AP_DECLARE(void) ap_log_error(const char *file, int line, int level,
apr_status_t status, const server_rec *s, const char *fmt, ...) {
#endif
if (level < APLOG_DEBUG) {
fprintf(stderr, "%s:%d [%d] [%d] ", file, line, level, status);
va_list ap;
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
fprintf(stderr, "\n");
}
}
#if MODULE_MAGIC_NUMBER_MAJOR >= 20100714
AP_DECLARE(void) ap_log_rerror_(const char *file, int line, int module_index, int level,
apr_status_t status, const request_rec *r, const char *fmt, ...) {
#else
AP_DECLARE(void) ap_log_rerror(const char *file, int line, int level,
apr_status_t status, const request_rec *r, const char *fmt, ...) {
#endif
if (level < APLOG_DEBUG) {
fprintf(stderr, "%s:%d [%d] [%d] ", file, line, level, status);
va_list ap;
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
fprintf(stderr, "\n");
}
}
AP_DECLARE(void) ap_note_auth_failure(request_rec *r) {
}
AP_DECLARE(apr_status_t) ap_pass_brigade(ap_filter_t *filter,
apr_bucket_brigade *bucket) {
return APR_SUCCESS;
}
AP_DECLARE(const apr_array_header_t *) ap_requires(request_rec *r) {
return NULL;
}
const char *ap_run_http_scheme(const request_rec *r) {
char *rv;
apr_pool_userdata_get((void **) &rv, "scheme", r->pool);
return (const char *) rv;
}
AP_DECLARE(void) ap_set_content_type(request_rec *r, const char *ct) {
}
AP_DECLARE_NONSTD(const char *) ap_set_flag_slot(cmd_parms *cmd,
void *struct_ptr,
int arg) {
return "";
}
AP_DECLARE_NONSTD(const char *) ap_set_string_slot(cmd_parms *cmd,
void *struct_ptr,
const char *arg) {
return "";
}
AP_DECLARE_NONSTD(const char *) ap_set_int_slot(cmd_parms *cmd,
void *struct_ptr,
const char *arg) {
return "";
}
AP_DECLARE(int) ap_setup_client_block(request_rec *r, int read_policy) {
return 0;
}
AP_DECLARE(int) ap_should_client_block(request_rec *r) {
return 0;
}
AP_DECLARE(int) ap_unescape_url(char *url) {
return 0;
}
AP_DECLARE(apr_status_t) unixd_set_global_mutex_perms(
apr_global_mutex_t *gmutex) {
return APR_SUCCESS;
}
AP_DECLARE(const char *) ap_get_server_name(request_rec *r) {
return "www.example.com";
}
|