| 795 | |
| 796 | |
| 797 | static int w_sql_replace(struct sip_msg* msg, str* table, str *cols, |
| 798 | void *url) |
| 799 | { |
| 800 | struct db_url *parsed_url; |
| 801 | |
| 802 | if (url) |
| 803 | parsed_url = ((struct db_url_container *)url)->u.url; |
| 804 | else |
| 805 | parsed_url = default_db_url; |
| 806 | |
| 807 | return ops_sql_api_replace(parsed_url, msg, table, cols); |
| 808 | } |
| 809 | |
| 810 | |
| 811 | static int w_async_sql_query(struct sip_msg* msg, async_ctx *ctx, |
nothing calls this directly
no test coverage detected