Hi, On Thu, Aug 28, 2014 at 8:46 AM, gowtham babu <gowtham.ab@xxxxxxxxxxx> wrote: > Adds below MCE event types handling in map_handle_notification() > MAP_ET_MEMORY_FULL > MAP_ET_MEMORY_AVAILABLE > --- > obexd/client/map.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/obexd/client/map.c b/obexd/client/map.c > index 520e492..84feecf 100644 > --- a/obexd/client/map.c > +++ b/obexd/client/map.c > @@ -1927,6 +1927,12 @@ static void map_handle_notification(struct map_event *event, void *user_data) > case MAP_ET_MESSAGE_SHIFT: > map_handle_folder_changed(map, event, event->folder); > break; > + case MAP_ET_MEMORY_FULL: > + map_handle_status_changed(map, event, "memory-full"); > + break; > + case MAP_ET_MEMORY_AVAILABLE: > + map_handle_status_changed(map, event, "memory-available"); > + break; > default: > break; > } > -- > 1.9.1 Those are actually ignored on purpose since there is nothing the applications can do with them, in fact I find it very awkward that it got into MAP spec and in any case this not really work since the handle for those events is not set to a specific message according to the spec page 33: '"handle" is not used when the event "type" is "MemoryFull" or "MemoryAvailable".' I could be mapped to the session itself but then again how a client is suppose to handle those and is there any server that is sending them. -- Luiz Augusto von Dentz -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html