| 1340 | } |
| 1341 | |
| 1342 | int route_params_run(struct sip_msg *msg, pv_param_t *ip, pv_value_t *res) |
| 1343 | { |
| 1344 | if (route_rec_level == -1) |
| 1345 | { |
| 1346 | LM_DBG("no parameter specified for this route\n"); |
| 1347 | return pv_get_null(msg, ip, res); |
| 1348 | } |
| 1349 | |
| 1350 | return route_params[route_rec_level].get_param(msg, ip, res, |
| 1351 | route_params[route_rec_level].params, |
| 1352 | route_params[route_rec_level].extra); |
| 1353 | } |
| 1354 | |
| 1355 | |
| 1356 | static const char *_sip_msg_buf = |
no test coverage detected