gnome-bluetooth integration



Hi guys,
please consider this patch, which enables iPhone support in the gnome-bluetooth plugin.
The iPhone reports a NAP service, instead of a PANU service, but it works - after connecting
to that service through NetworkManager a connection is setup and operational.

Regards,
Andrzej W-P.

index 3cdd5b5..945b849 100644
--- a/src/gnome-bluetooth/network-manager-applet.c
+++ b/src/gnome-bluetooth/network-manager-applet.c
@@ -45,7 +45,7 @@ has_config_widget (const char *bdaddr, const char **uuids)
 
        for (i = 0; uuids && uuids[i] != NULL; i++) {
                g_message ("has_config_widget %s %s", bdaddr, uuids[i]);
-               if (g_str_equal (uuids[i], "PANU"))
+               if (g_str_equal (uuids[i], "PANU") || g_str_equal (uuids[i], "NAP"))
                        return TRUE;
        }
        return FALSE;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]