| 342 | |
| 343 | |
| 344 | void update_all_script_route_refs(void) |
| 345 | { |
| 346 | struct script_route_ref *it; |
| 347 | |
| 348 | for( it=sroute_refs ; it ; it=it->next ) { |
| 349 | update_script_route_ref( it ); |
| 350 | if (it->idx==-1) |
| 351 | LM_WARN("route [%s] not found when updating refs\n",it->name.s); |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | |
| 356 | struct script_route_ref *dup_ref_script_route_in_shm( |
no test coverage detected