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

Function script_return_free

route.c:2202–2212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2200}
2201
2202void script_return_free(struct script_return_value **values)
2203{
2204 struct script_return_value *v, *n;
2205 if (*values == NULL)
2206 return;
2207 for (v = *values; v; v = n) {
2208 n = v->next;
2209 pkg_free(v);
2210 }
2211 *values = NULL;
2212}
2213
2214void script_return_set(struct sip_msg *msg, struct script_return_param *params)
2215{

Callers 3

script_return_pushFunction · 0.85
script_return_popFunction · 0.85
script_return_setFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected