diff options
| author | Hung-ying Tyan <tyanh@google.com> | 2010-09-14 00:17:51 +0800 |
|---|---|---|
| committer | Hung-ying Tyan <tyanh@google.com> | 2010-09-14 08:00:09 +0800 |
| commit | d231aa880ab006d51ffe03454c1fc082f1c97bb8 (patch) | |
| tree | 4b1c1b33c96e8d475879d76e3e81d79d27fc3b98 /services/java/com/android/server/sip/SipService.java | |
| parent | 3d7606aa607b24817e37c264f2141ed7b2d50be0 (diff) | |
SipService: deliver connectivity change to all sessions.
+ add DATA_CONNECTION_LOST to SipErrorCode
+ convert it to Connection.DisconnectCause.LOST_SIGNAL in SipPhone
http://b/issue?id=2992548
Change-Id: Ie8983c1b81077b21f46304cf60b8e61df1ffd241
Diffstat (limited to 'services/java/com/android/server/sip/SipService.java')
| -rw-r--r-- | services/java/com/android/server/sip/SipService.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/java/com/android/server/sip/SipService.java b/services/java/com/android/server/sip/SipService.java index c3786f563a2d..803cc966ca9e 100644 --- a/services/java/com/android/server/sip/SipService.java +++ b/services/java/com/android/server/sip/SipService.java @@ -404,6 +404,7 @@ public final class SipService extends ISipService.Stub { public void onConnectivityChanged(boolean connected) throws SipException { + mSipGroup.onConnectivityChanged(); if (connected) { resetGroup(mLocalIp); if (mOpened) openToReceiveCalls(); |
