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

Function find_cmd_export_t

cmds.c:24–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22#include "cmds.h"
23
24const cmd_export_t* find_cmd_export_t(const char* name, int flags)
25{
26 const cmd_export_t* cmd;
27
28 cmd = find_core_cmd_export_t(name, flags);
29 if (!cmd)
30 cmd = find_mod_cmd_export_t(name, flags);
31
32 return cmd;
33}
34
35/* Checks if the module function is called with the right number of parameters
36 * and all mandatory parameters are given

Callers 2

msg_call_functionFunction · 0.85
l_siplua_moduleFuncFunction · 0.85

Calls 2

find_core_cmd_export_tFunction · 0.85
find_mod_cmd_export_tFunction · 0.85

Tested by

no test coverage detected