From: Luiz Augusto von Dentz Date: Wed, 9 Oct 2013 11:11:39 +0000 (+0300) Subject: core/profile: Fix MNS record version X-Git-Tag: android-x86-4.4-r3~7471 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=afeb0d0bf9118caf5048c096a90329cf9e6941bf;p=android-x86%2Fexternal-bluetooth-bluez.git core/profile: Fix MNS record version To be able to use OBEX over L2CAP the version number should be at least 0x102, in addition to that ERTM mode should be used to comply to GOEP 2.0. --- diff --git a/src/profile.c b/src/profile.c index accd007b0..d8cbe6a83 100644 --- a/src/profile.c +++ b/src/profile.c @@ -1978,9 +1978,10 @@ static struct default_settings { .name = "Message Notification", .channel = MNS_DEFAULT_CHANNEL, .psm = BTD_PROFILE_PSM_AUTO, + .mode = BT_IO_MODE_ERTM, .authorize = true, .get_record = get_mns_record, - .version = 0x0100 + .version = 0x0102 }, };