diff options
author | Hung-ying Tyan <tyanh@google.com> | 2011-08-15 01:07:34 +0800 |
---|---|---|
committer | Hung-ying Tyan <tyanh@google.com> | 2011-08-15 01:13:41 +0800 |
commit | dc5bbe965f7a66238c3f9a6694f4410b3d52af3b (patch) | |
tree | d0553467ca37f59c4ff220db76d9d9fa2c709945 /voip/java/android | |
parent | 8868f9797c39e5fc7c9612fbb69d53f34f03f6a2 (diff) | |
download | frameworks_base-dc5bbe965f7a66238c3f9a6694f4410b3d52af3b.zip frameworks_base-dc5bbe965f7a66238c3f9a6694f4410b3d52af3b.tar.gz frameworks_base-dc5bbe965f7a66238c3f9a6694f4410b3d52af3b.tar.bz2 |
Handle SIP authentication response for BYE.
Bug: 5159669
Change-Id: I029684334500d4d0db176783084c9b7d1db87e40
Diffstat (limited to 'voip/java/android')
-rw-r--r-- | voip/java/android/net/sip/SipSession.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/voip/java/android/net/sip/SipSession.java b/voip/java/android/net/sip/SipSession.java index 5ba1626..e03cf9f 100644 --- a/voip/java/android/net/sip/SipSession.java +++ b/voip/java/android/net/sip/SipSession.java @@ -63,6 +63,9 @@ public final class SipSession { /** When an OPTIONS request is sent. */ public static final int PINGING = 9; + /** When ending a call. @hide */ + public static final int ENDING_CALL = 10; + /** Not defined. */ public static final int NOT_DEFINED = 101; |