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 -- 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