Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 576b492c authored by Chung-yih Wang's avatar Chung-yih Wang Committed by Android Git Automerger
Browse files

am 5de1d36d: Log outbound proxy address if exists for debugging.

Merge commit '5de1d36d' into gingerbread-plus-aosp

* commit '5de1d36d':
  Log outbound proxy address if exists for debugging.
parents 84f992a2 5de1d36d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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());
        }