| 1200 | } |
| 1201 | |
| 1202 | static int w_serialize_branches(struct sip_msg *msg, int *clear_prev, |
| 1203 | int *keep_ord) |
| 1204 | { |
| 1205 | if (serialize_branches(msg,*clear_prev, |
| 1206 | keep_ord ? *keep_ord : 0)!=0) { |
| 1207 | LM_ERR("serialize_branches failed\n"); |
| 1208 | return E_UNSPEC; |
| 1209 | } |
| 1210 | |
| 1211 | return 1; |
| 1212 | } |
| 1213 | |
| 1214 | static int w_next_branches(struct sip_msg *msg) |
| 1215 | { |
nothing calls this directly
no test coverage detected