OSDN Git Service
(root)
/
android-x86
/
external-bluetooth-bluez.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b8e62a
)
core/profile: Fix MNS record version
author
Luiz Augusto von Dentz
<luiz.von.dentz@intel.com>
Wed, 9 Oct 2013 11:11:39 +0000
(14:11 +0300)
committer
Johan Hedberg
<johan.hedberg@intel.com>
Wed, 9 Oct 2013 15:37:39 +0000
(17:37 +0200)
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
patch
|
blob
|
history
diff --git
a/src/profile.c
b/src/profile.c
index
accd007
..
d8cbe6a
100644
(file)
--- 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 = 0x010
0
+ .version = 0x010
2
},
};