| 803 | |
| 804 | |
| 805 | int codec_move_up(struct sip_msg* msg, str* codec, str* clock) |
| 806 | { |
| 807 | LM_DBG("moving up codec <%.*s> with clock <%.*s> \n", |
| 808 | codec->len, codec->s, clock ? clock->len : 0, clock ? clock->s : NULL); |
| 809 | |
| 810 | return do_for_all_streams(msg, codec, clock, NULL, |
| 811 | ADD_TO_FRONT, DESC_NAME_AND_CLOCK); |
| 812 | } |
| 813 | |
| 814 | |
| 815 | int codec_move_down_re(struct sip_msg* msg, regex_t* re) |
nothing calls this directly
no test coverage detected