Log outbound proxy address if exists for debugging.

Change-Id: I2d2dffe3536e674b6956164c400e397c2f00f212
This commit is contained in:
Chung-yih Wang
2010-09-08 13:15:55 +08:00
parent 6aec225010
commit 5de1d36dd0

View File

@@ -123,6 +123,7 @@ class SipSessionGroup implements SipListener {
properties.setProperty("javax.sip.STACK_NAME", getStackName());
String outboundProxy = myself.getProxyAddress();
if (!TextUtils.isEmpty(outboundProxy)) {
Log.v(TAG, "outboundProxy is " + outboundProxy);
properties.setProperty("javax.sip.OUTBOUND_PROXY", outboundProxy
+ ":" + myself.getPort() + "/" + myself.getProtocol());
}