| 74 | return format("<sip:%s@%s>;tag=%s",username,ip,tag); |
| 75 | } |
| 76 | string makeUri(string username, string ip, unsigned port) |
| 77 | { |
| 78 | if (port) { |
| 79 | return format("sip:%s@%s:%u",username,ip,port); |
| 80 | } else { |
| 81 | return format("sip:%s@%s",username,ip); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | static int get_rtp_tev_type(char dtmf){ |
| 86 | switch (dtmf){ |
no outgoing calls
no test coverage detected