summaryrefslogtreecommitdiff
path: root/obexd/plugins
diff options
context:
space:
mode:
authorBharat Panda <bharat.panda@samsung.com>2014-10-29 18:06:01 +0530
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-10-29 16:42:37 +0200
commit53d39af1e7ac94a6c9779df44dcdc05d8a3ab238 (patch)
tree07977c83690030cb157c2d44f3c420d6d58d9427 /obexd/plugins
parentc7e65ffa0ea37b1557fa3098e2c17e77cdb4723f (diff)
downloadbluez-53d39af1e7ac94a6c9779df44dcdc05d8a3ab238.tar.gz
obexd/mas: Handle register notification open
Changes made to handle method open for mime_notification_registration
Diffstat (limited to 'obexd/plugins')
-rw-r--r--obexd/plugins/mas.c30
1 files changed, 29 insertions, 1 deletions
diff --git a/obexd/plugins/mas.c b/obexd/plugins/mas.c
index db4050974..3a3c21aa3 100644
--- a/obexd/plugins/mas.c
+++ b/obexd/plugins/mas.c
@@ -72,6 +72,7 @@ struct mas_session {
GObexApparam *inparams;
GObexApparam *outparams;
gboolean ap_sent;
+ uint8_t notification_status;
};
static const uint8_t MAS_TARGET[TARGET_SIZE] = {
@@ -766,6 +767,33 @@ static int any_close(void *obj)
return 0;
}
+static void *notification_registration_open(const char *name, int oflag,
+ mode_t mode, void *driver_data,
+ size_t *size, int *err)
+{
+ struct mas_session *mas = driver_data;
+ uint8_t status;
+
+ DBG("");
+
+ if (O_RDONLY) {
+ *err = -EBADR;
+ return NULL;
+ }
+
+ if (!g_obex_apparam_get_uint8(mas->inparams, MAP_AP_NOTIFICATIONSTATUS,
+ &status)) {
+ *err = -EBADR;
+ return NULL;
+ }
+
+ mas->notification_status = status;
+ mas->finished = TRUE;
+ *err = 0;
+
+ return mas;
+}
+
static struct obex_service_driver mas = {
.name = "Message Access server",
.service = OBEX_MAS,
@@ -824,7 +852,7 @@ static struct obex_mime_type_driver mime_notification_registration = {
.target = MAS_TARGET,
.target_size = TARGET_SIZE,
.mimetype = "x-bt/MAP-NotificationRegistration",
- .open = any_open,
+ .open = notification_registration_open,
.close = any_close,
.read = any_read,
.write = any_write,