| 273 | |
| 274 | |
| 275 | static inline void free_rte_list(struct rte* list) |
| 276 | { |
| 277 | struct rte* ptr; |
| 278 | |
| 279 | while(list) { |
| 280 | ptr = list; |
| 281 | list = list->next; |
| 282 | pkg_free(ptr); |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | |
| 287 | static inline int process_routeset(struct sip_msg* msg, str* contact, struct rte** list, str* ruri, str* next_hop) |
no outgoing calls
no test coverage detected