From 832a725f355e222169727f282c8996536cca1c17 Mon Sep 17 00:00:00 2001 From: Slawomir Bochenski Date: Tue, 27 Mar 2012 14:59:26 +0200 Subject: [PATCH] obexd: Initial outgoing parameters support --- obexd/plugins/mas.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/obexd/plugins/mas.c b/obexd/plugins/mas.c index f6d479980..ea2b4b2a6 100644 --- a/obexd/plugins/mas.c +++ b/obexd/plugins/mas.c @@ -110,6 +110,7 @@ struct mas_session { gboolean nth_call; GString *buffer; map_ap_t *inparams; + map_ap_t *outparams; }; static const uint8_t MAS_TARGET[TARGET_SIZE] = { @@ -131,6 +132,8 @@ static int get_params(struct obex_session *os, struct mas_session *mas) return -EBADR; } + mas->outparams = map_ap_new(); + return 0; } @@ -143,6 +146,8 @@ static void reset_request(struct mas_session *mas) map_ap_free(mas->inparams); mas->inparams = NULL; + map_ap_free(mas->outparams); + mas->outparams = NULL; mas->nth_call = FALSE; mas->finished = FALSE; -- 2.47.3