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

Function mi_xmlNodeGetNodeByName

modules/mi_xmlrpc/http_fnc.c:176–185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174}
175
176xmlNodePtr mi_xmlNodeGetNodeByName(xmlNodePtr node, const char *name)
177{
178 xmlNodePtr cur = node;
179 while (cur) {
180 if(xmlStrcasecmp(cur->name, (const xmlChar*)name)==0)
181 return cur;
182 cur = cur->next;
183 }
184 return NULL;
185}
186
187void mi_xmlrpc_http_destroy_async_lock(void)
188{

Callers 5

mi_xmlrpc_get_paramFunction · 0.85
mi_xmlrpc_parse_paramsFunction · 0.85
mi_xmlrpc_run_mi_cmdFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected