MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / get_mod_handle

Function get_mod_handle

sr_module.c:852–861  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

850
851
852void *get_mod_handle(const char *name)
853{
854 struct sr_module *mod;
855
856 for (mod = modules; mod; mod = mod->next)
857 if (!strcasecmp(name, mod->exports->name))
858 return mod->handle;
859
860 return NULL;
861}
862
863
864/* Counts the additional the number of processes requested by modules */

Callers 1

run_unit_testsFunction · 0.85

Calls

no outgoing calls

Tested by 1

run_unit_testsFunction · 0.68