Skip to content

Commit

Permalink
core/profile: Fix MNS record version
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Vudentz authored and Johan Hedberg committed Oct 9, 2013
1 parent 8b8e62a commit afeb0d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/profile.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
};

Expand Down

0 comments on commit afeb0d0

Please sign in to comment.