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:
Chung-yih Wang
2010-10-18 23:21:11 -07:00
committed by Android Git Automerger

View File

@@ -134,7 +134,8 @@ class SipSessionGroup implements SipListener {
SipFactory sipFactory = SipFactory.getInstance();
Properties properties = new Properties();
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();
if (!TextUtils.isEmpty(outboundProxy)) {
Log.v(TAG, "outboundProxy is " + outboundProxy);