am b4116c09: Fix the incorrect environment variable name for the thread pool size.
Merge commit 'b4116c09fb9784551911ea0a10b4dd321ff9aa7d' into gingerbread-plus-aosp * commit 'b4116c09fb9784551911ea0a10b4dd321ff9aa7d': Fix the incorrect environment variable name for the thread pool size.
This commit is contained in:
@@ -134,7 +134,8 @@ class SipSessionGroup implements SipListener {
|
|||||||
SipFactory sipFactory = SipFactory.getInstance();
|
SipFactory sipFactory = SipFactory.getInstance();
|
||||||
Properties properties = new Properties();
|
Properties properties = new Properties();
|
||||||
properties.setProperty("javax.sip.STACK_NAME", getStackName());
|
properties.setProperty("javax.sip.STACK_NAME", getStackName());
|
||||||
properties.setProperty("javax.sip.THREAD_POOL_SIZE", THREAD_POOL_SIZE);
|
properties.setProperty(
|
||||||
|
"gov.nist.javax.sip.THREAD_POOL_SIZE", THREAD_POOL_SIZE);
|
||||||
String outboundProxy = myself.getProxyAddress();
|
String outboundProxy = myself.getProxyAddress();
|
||||||
if (!TextUtils.isEmpty(outboundProxy)) {
|
if (!TextUtils.isEmpty(outboundProxy)) {
|
||||||
Log.v(TAG, "outboundProxy is " + outboundProxy);
|
Log.v(TAG, "outboundProxy is " + outboundProxy);
|
||||||
|
|||||||
Reference in New Issue
Block a user