| 905 | } |
| 906 | |
| 907 | static int w_seturi(struct sip_msg *msg, str *uri) |
| 908 | { |
| 909 | if (set_ruri(msg, uri) ) { |
| 910 | LM_ERR("failed to set new RURI\n"); |
| 911 | return E_OUT_OF_MEM; |
| 912 | } |
| 913 | |
| 914 | return 1; |
| 915 | } |
| 916 | |
| 917 | static int w_prefix(struct sip_msg *msg, str *prefix) |
| 918 | { |
nothing calls this directly
no test coverage detected