summaryrefslogtreecommitdiff
path: root/services/java/com/android/server/sip/SipSessionGroup.java
AgeCommit message (Collapse)Author
2010-09-28Move SipService out of SystemServer to phone process.Hung-ying Tyan
Companion CL: https://android-git/g/#change,70187 http://b/issue?id=2998069 Change-Id: I90923ac522ef363a4e04292f652d413c5a1526ad
2010-09-28Fix build.Hung-ying Tyan
Change-Id: Ie47b63f02764e8a1ca1d36f502b6b4134859ff0d
2010-09-28SIP: misc fixesHung-ying Tyan
+ check REQUEST_TERMINATED response on INVITE not CANCEL, + check if a TransactionTerminatedEvent matches the ongoing transaction, + add log to track SipConnection disconnect events. Change-Id: I28325be62ac44e4a7507d3c4b5b78b066c0ea2ad
2010-09-27SipService: handle cross-domain authentication errorHung-ying Tyan
and add new CROSS_DOMAIN_AUTHENTICATION error code and OUT_OF_NETWORK DisconnectCause. http://b/issue?id=3020185 Change-Id: Icc0a341599d5a72b7cb2d43675fbddc516544978
2010-09-25SIP: longer timeout for making call, shorter for cancellingHung-ying Tyan
http://b/3021865 Change-Id: I354ebcc00f1ac68e4b7b466745c36aeb314f9138
2010-09-24SDP: remove dead code.Chia-chi Yeh
Change-Id: I2a5764a2b9cabc54b0ac18666e494c1cb39c4e9b
2010-09-24Refactoring SIP classes to get ready for API review.Hung-ying Tyan
+ replace SipAudioCall and its Listener interfaces with real implementations, + remove SipAudioCallImpl.java, most of it is has become part of SipAudioCall, + add SipSession and its Listener classes to wrap ISipSession and ISipSessionListener, + move SipSessionState to SipSession.State, + make SipManager keep context and remove the context argument from many methods of its, + rename SipManager.getInstance() to newInstance(), + rename constant names for action strings and extra keys to follow conventions, + set thread names for debugging purpose. Change-Id: Ie1790dc0e8f49c06c7fc80d33fec0f673a9c3044
2010-09-24Handle OPTIONS requests from SIP servers.Chung-yih Wang
Change-Id: I849d5ea4c4c56a06d25ccdc6b959274c59c47200
2010-09-20SIP: convert enum to static final int.Hung-ying Tyan
Converts SipErrorCode and SipSessionState. Change-Id: Iee3a465649ea89d395b2336bbd673c25113e5f93
2010-09-17Add timer to SIP session creation process.Hung-ying Tyan
+ add timer parameter to ISipSession.make/changeCall(), + add timer paramter to SipAudioCall.make/answer/hold/continueCall()'s, + add timer parameter to SipManager.makeAudioCall(), + modify implementation in SipSessionGroup, SipAudioCallImpl accordingly, + make SipPhone to use it with 8-second timeout. http://b/issue?id=2994748 Change-Id: I661a887e5810087ddc5e2318335e2fa427f80ec6
2010-09-16SipService: add log control, suppress ping log.Hung-ying Tyan
Change-Id: I78332ddee1272be41b1fbc80c603e41200c6be1a
2010-09-16Fix the unhandled authentication message.Chung-yih Wang
bug id: http://b/2991911 Change-Id: Iec86e3aee0fb12034ee25bc0e93fd575c1208a5f
2010-09-15SIP: add PEER_NOT_REACHABLE error feedback.Hung-ying Tyan
http://b/issue?id=3002033 Change-Id: Ib64b08919d214acbab89945ac19dc113a68e62ad
2010-09-15SipService: send SERVER_ERROR if server doesn't provide nonceHung-ying Tyan
in authentication response. Change-Id: I93e8c0d6754399ca2f382033085e40fc4c6ccb19
2010-09-14SIP: remove dependency on javax.sipHung-ying Tyan
and change errorCodeString to errorCode in SipRegistrationListener.onRegistrationFailed(). Change-Id: Id9618f5a4b0effaed04f8b0dc60347499d9e4501
2010-09-14Fix the bug of authentication in an outgoing call.Chung-yih Wang
Since we missed the check of another challenge header in the proxy authentication response. Change-Id: Ie5b9d22c6c55b4d65619d2194c88845e7dd59f15
2010-09-14SipService: deliver connectivity change to all sessions.Hung-ying Tyan
+ add DATA_CONNECTION_LOST to SipErrorCode + convert it to Connection.DisconnectCause.LOST_SIGNAL in SipPhone http://b/issue?id=2992548 Change-Id: Ie8983c1b81077b21f46304cf60b8e61df1ffd241
2010-09-13SIP: enhance timeout and registration status feedback.Hung-ying Tyan
http://b/issue?id=2984419 http://b/issue?id=2991065 Change-Id: I2d3b1dd3a70079ff347f7256f4684aea07847f4e
2010-09-10SIP: add SipErrorCode for error feedback.Hung-ying Tyan
Change-Id: I8b071d4933479b780a403d0bfa30511f4c23ca8f
2010-09-08Log outbound proxy address if exists for debugging.Chung-yih Wang
Change-Id: I2d2dffe3536e674b6956164c400e397c2f00f212
2010-09-02SipService: reduce the usage of javax.sdp.*.Chia-chi Yeh
After this change, SipAudioCallImpl is the only place still using it. Change-Id: I5693bffa54f9e19cbfa70b45dfcf40fba04dedbb
2010-08-20SipSession: make potential time-consuming ops run on background threadHung-ying Tyan
http://b/issue?id=2933071 Change-Id: I0467cb5fc41bc2d6e010d20c99b7f0392fb0889e
2010-08-06Add SIP service into system server.Chung-yih Wang
Change-Id: Icc39e4e54768cfdcc1b20a3efe6206009b9a8d10