diff options
-rw-r--r-- | voip/java/android/net/sip/SipManager.java | 7 | ||||
-rw-r--r-- | voip/java/com/android/server/sip/SipService.java | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/voip/java/android/net/sip/SipManager.java b/voip/java/android/net/sip/SipManager.java index 80c35fb..8c32aa0 100644 --- a/voip/java/android/net/sip/SipManager.java +++ b/voip/java/android/net/sip/SipManager.java @@ -65,6 +65,13 @@ public class SipManager { public static final String EXTRA_OFFER_SD = "android:sipOfferSD"; /** + * Action to broadcast when SipService is up. + * Internal use only. + * @hide + */ + public static final String ACTION_SIP_SERVICE_UP = + "android.net.sip.SIP_SERVICE_UP"; + /** * Action string for the incoming call intent for the Phone app. * Internal use only. * @hide diff --git a/voip/java/com/android/server/sip/SipService.java b/voip/java/com/android/server/sip/SipService.java index d8a1572..1fa2400 100644 --- a/voip/java/com/android/server/sip/SipService.java +++ b/voip/java/com/android/server/sip/SipService.java @@ -100,6 +100,7 @@ public final class SipService extends ISipService.Stub { public static void start(Context context) { if (SipManager.isApiSupported(context)) { ServiceManager.addService("sip", new SipService(context)); + context.sendBroadcast(new Intent(SipManager.ACTION_SIP_SERVICE_UP)); Log.i(TAG, "SIP service started"); } } |