| 695 | |
| 696 | |
| 697 | static int w_sql_query(struct sip_msg* msg, str* query, |
| 698 | void* dest, void *url) |
| 699 | { |
| 700 | struct db_url *parsed_url; |
| 701 | |
| 702 | if (url) |
| 703 | parsed_url = ((struct db_url_container *)url)->u.url; |
| 704 | else |
| 705 | parsed_url = default_db_url; |
| 706 | |
| 707 | return ops_sql_query(msg, query, parsed_url, (pvname_list_t*)dest, 0); |
| 708 | } |
| 709 | |
| 710 | |
| 711 | static int w_sql_query_one(struct sip_msg* msg, str* query, |
nothing calls this directly
no test coverage detected