From afeb0d0bf9118caf5048c096a90329cf9e6941bf Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 9 Oct 2013 14:11:39 +0300 Subject: [PATCH] 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. --- src/profile.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 }, }; -- 2.11.0