| 758 | |
| 759 | |
| 760 | int codec_find(struct sip_msg* msg, str* codec, str* clock) |
| 761 | { |
| 762 | LM_DBG("searching for codec <%.*s>, clock <%.*s> \n", |
| 763 | codec->len, codec->s, |
| 764 | clock ? clock->len : 0, clock ? clock->s : NULL); |
| 765 | |
| 766 | return do_for_all_streams(msg, codec, clock, NULL, FIND, DESC_NAME); |
| 767 | } |
| 768 | |
| 769 | int codec_find_re (struct sip_msg* msg, regex_t* re) |
| 770 | { |
nothing calls this directly
no test coverage detected