--- android/pan.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/android/pan.c b/android/pan.c index a733d22..8ea07a4 100644 --- a/android/pan.c +++ b/android/pan.c @@ -750,10 +750,20 @@ bool bt_pan_register(const bdaddr_t *addr) return true; } +static void pan_device_disconnected(gpointer data, gpointer user_data) +{ + struct pan_device *dev = data; + + bt_pan_notify_conn_state(dev, HAL_PAN_STATE_DISCONNECTED); +} + void bt_pan_unregister(void) { DBG(""); + g_slist_foreach(devices, pan_device_disconnected, NULL); + devices = NULL; + bnep_cleanup(); ipc_unregister(HAL_SERVICE_ID_PAN); -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html