* register us for the mod_log_config function registering phase * to establish %{...}c and to be able to expand %{...}x variables. */
| 1185 | * to establish %{...}c and to be able to expand %{...}x variables. |
| 1186 | */ |
| 1187 | void ssl_var_log_config_register(apr_pool_t *p) |
| 1188 | { |
| 1189 | APR_OPTIONAL_FN_TYPE(ap_register_log_handler) *log_pfn_register; |
| 1190 | |
| 1191 | log_pfn_register = APR_RETRIEVE_OPTIONAL_FN(ap_register_log_handler); |
| 1192 | |
| 1193 | if (log_pfn_register) { |
| 1194 | log_pfn_register(p, "c", ssl_var_log_handler_c, 0); |
| 1195 | log_pfn_register(p, "x", ssl_var_log_handler_x, 0); |
| 1196 | } |
| 1197 | return; |
| 1198 | } |
| 1199 | |
| 1200 | /* |
| 1201 | * implement the %{..}c log function |
no outgoing calls
no test coverage detected