MCPcopy Create free account
hub / github.com/apache/httpd / load_file

Function load_file

modules/core/mod_so.c:327–340  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

325 */
326
327static const char *load_file(cmd_parms *cmd, void *dummy, const char *filename)
328{
329 apr_dso_handle_t *handle;
330 const char *used_file, *error;
331
332 error = dso_load(cmd, &handle, filename, &used_file);
333 if (error)
334 return error;
335
336 ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, NULL, APLOGNO(01576)
337 "loaded file %s", used_file);
338
339 return NULL;
340}
341
342static module *ap_find_loaded_module_symbol(server_rec *s, const char *modname)
343{

Callers

nothing calls this directly

Calls 2

dso_loadFunction · 0.85
ap_log_errorFunction · 0.50

Tested by

no test coverage detected