| 350 | return format("<sip:%s@%s>",localUsername,localIP()); |
| 351 | } |
| 352 | string localContact(string localUsername, int expires=3600) { |
| 353 | return format("<sip:%s@%s>;expires=%u",localUsername,localIPAndPort(),expires); |
| 354 | } |
| 355 | string proxyIP() const { return mProxy.mipIP; } |
| 356 | string transportName() { return string("UDP"); } // TODO |
| 357 | bool isReliableTransport() { return transportName() == "TCP"; } // TODO |
no test coverage detected