diff options
Diffstat (limited to 'apache13.h')
| -rw-r--r-- | apache13.h | 61 | 
1 files changed, 61 insertions, 0 deletions
| diff --git a/apache13.h b/apache13.h new file mode 100644 index 0000000..3b37986 --- /dev/null +++ b/apache13.h | |||
| @@ -0,0 +1,61 @@ | |||
| 1 | #ifndef APACHE13_H | ||
| 2 | #define APACHE13_H | ||
| 3 | |||
| 4 | #include "httpd.h" | ||
| 5 | #include "http_config.h" | ||
| 6 | #include "http_log.h" | ||
| 7 | #include "http_core.h" | ||
| 8 | |||
| 9 | /* Defines */ | ||
| 10 | #define AP_MODULE_DECLARE_DATA | ||
| 11 | #define APR_OFF_T_FMT "ld" | ||
| 12 | #define APR_PID_T_FMT "d" | ||
| 13 | #define APR_SUCCESS 0 | ||
| 14 | #define APR_OFFSETOF XtOffsetOf | ||
| 15 | |||
| 16 | /*AP_INIT_TAKE1("LogSQLTransferLogTable", set_server_nmv_string_slot, | ||
| 17 | (void *)APR_OFFSETOF(logsql_state, transfer_table_name), RSRC_CONF, | ||
| 18 | "The database table that holds the transfer log") | ||
| 19 | |||
| 20 | {"LogSQLTransferLogTable", set_log_sql_transfer_table, NULL, RSRC_CONF, TAKE1, | ||
| 21 | "The database table that holds the transfer log"}*/ | ||
| 22 | |||
| 23 | /** method of declaring a directive which takes 1 argument */ | ||
| 24 | # define AP_INIT_TAKE1(directive, func, mconfig, where, help) \ | ||
| 25 | { directive, func, mconfig, where, TAKE1, help } | ||
| 26 | /** method of declaring a directive which takes multiple arguments */ | ||
| 27 | # define AP_INIT_ITERATE(directive, func, mconfig, where, help) \ | ||
| 28 | { directive, func, mconfig, where, ITERATE, help } | ||
| 29 | /** method of declaring a directive which takes 3 arguments */ | ||
| 30 | # define AP_INIT_TAKE3(directive, func, mconfig, where, help) \ | ||
| 31 | { directive, func, mconfig, where, TAKE3, help } | ||
| 32 | /** method of declaring a directive which takes a flag (on/off) as an argument */ | ||
| 33 | # define AP_INIT_FLAG(directive, func, mconfig, where, help) \ | ||
| 34 | { directive, func, mconfig, where, FLAG, help } | ||
| 35 | |||
| 36 | /* Types */ | ||
| 37 | #define apr_pool_t pool | ||
| 38 | #define apr_array_header_t array_header | ||
| 39 | |||
| 40 | /* Functions */ | ||
| 41 | #define ap_get_remote_host(a,b,c,d) ap_get_remote_host(a,b,c) | ||
| 42 | |||
| 43 | #define apr_palloc ap_palloc | ||
| 44 | #define apr_pcalloc ap_pcalloc | ||
| 45 | #define apr_pstrdup ap_pstrdup | ||
| 46 | #define apr_pstrcat ap_pstrcat | ||
| 47 | #define apr_psprintf ap_psprintf | ||
| 48 | #define apr_snprintf ap_snprintf | ||
| 49 | |||
| 50 | #define apr_table_get ap_table_get | ||
| 51 | |||
| 52 | #define apr_array_push ap_push_array | ||
| 53 | #define apr_array_make ap_make_array | ||
| 54 | #define apr_array_cat ap_array_cat | ||
| 55 | #define apr_is_empty_array(t) (((t) == NULL)||((t)->nelts == 0)) | ||
| 56 | |||
| 57 | #define apr_tolower ap_tolower | ||
| 58 | |||
| 59 | #define log_error ap_log_error | ||
| 60 | |||
| 61 | #endif /* APACHE13_H */ | ||
