| 344 | |
| 345 | |
| 346 | static inline xml_object_t *get_xml_obj(xml_path_t *path) |
| 347 | { |
| 348 | xml_object_t *obj; |
| 349 | |
| 350 | for (obj = objects; obj; obj = obj->next) |
| 351 | if (!str_strcmp(&obj->name, &path->obj_name)) |
| 352 | return obj; |
| 353 | |
| 354 | return NULL; |
| 355 | } |
| 356 | |
| 357 | static int path_eval_vars(struct sip_msg* msg, xml_path_t *path) |
| 358 | { |
no outgoing calls
no test coverage detected