| 820 | |
| 821 | |
| 822 | int codec_move_down(struct sip_msg* msg, str* codec, str* clock) |
| 823 | { |
| 824 | LM_DBG("moving down codec <%.*s> with clock <%.*s> \n", |
| 825 | codec->len, codec->s, clock ? clock->len : 0, clock ? clock->s : NULL); |
| 826 | |
| 827 | return do_for_all_streams( msg, codec, clock, NULL, |
| 828 | ADD_TO_BACK, DESC_NAME_AND_CLOCK); |
| 829 | } |
| 830 | |
| 831 | |
| 832 | static int handle_streams(struct sip_msg* msg, regex_t* re, regex_t* re2, |
nothing calls this directly
no test coverage detected