| 786 | |
| 787 | |
| 788 | int codec_delete(struct sip_msg* msg, str* codec, str* clock) |
| 789 | { |
| 790 | LM_DBG("deleting codec <%.*s> with clock <%.*s> \n", |
| 791 | codec->len, codec->s, clock ? clock->len : 0, clock ? clock->s : NULL); |
| 792 | |
| 793 | return do_for_all_streams( msg, codec, clock, NULL, |
| 794 | DELETE, DESC_NAME_AND_CLOCK); |
| 795 | } |
| 796 | |
| 797 | |
| 798 | int codec_move_up_re(struct sip_msg* msg, regex_t* re) |
nothing calls this directly
no test coverage detected