summaryrefslogtreecommitdiff
path: root/src/profile.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2013-10-09 14:11:39 +0300
committerJohan Hedberg <johan.hedberg@intel.com>2013-10-09 17:37:39 +0200
commitafeb0d0bf9118caf5048c096a90329cf9e6941bf (patch)
treeda23655820bcd4ae37a6417d316463f305585bb1 /src/profile.c
parent8b8e62a2185f288da87671d8dc78c719dc6e6028 (diff)
downloadbluez-afeb0d0bf9118caf5048c096a90329cf9e6941bf.tar.gz
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.
Diffstat (limited to 'src/profile.c')
-rw-r--r--src/profile.c3
1 files changed, 2 insertions, 1 deletions
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
},
};