[PATCH 12/12] doc: Add ReportChanged signal description

2012-08-17 Thread Ronald Tessier
--- doc/message-api.txt |7 +++ 1 file changed, 7 insertions(+) diff --git a/doc/message-api.txt b/doc/message-api.txt index 2922e5d..274bb98 100644 --- a/doc/message-api.txt +++ b/doc/message-api.txt @@ -31,6 +31,13 @@ Signals PropertyChanged(string name, variant value)

[PATCH 11/12] test: Add ReportChanged to monitored signals

2012-08-17 Thread Ronald Tessier
--- test/monitor-mms | 10 ++ 1 file changed, 10 insertions(+) diff --git a/test/monitor-mms b/test/monitor-mms index 188d028..ef17a13 100755 --- a/test/monitor-mms +++ b/test/monitor-mms @@ -29,6 +29,10 @@ def property_changed(name, value, member, path, interface): iface = inte

[PATCH 10/12] service: Send a delivery changed signal

2012-08-17 Thread Ronald Tessier
--- src/service.c | 48 +--- 1 file changed, 45 insertions(+), 3 deletions(-) diff --git a/src/service.c b/src/service.c index 44184cb..ba23b4a 100644 --- a/src/service.c +++ b/src/service.c @@ -218,6 +218,40 @@ static void emit_msg_status_changed(con

[PATCH 09/12] service: Process delivery_ind notification

2012-08-17 Thread Ronald Tessier
--- src/service.c | 111 ++--- 1 file changed, 107 insertions(+), 4 deletions(-) diff --git a/src/service.c b/src/service.c index b3ecc1e..44184cb 100644 --- a/src/service.c +++ b/src/service.c @@ -1300,6 +1300,104 @@ static void emit_service_r

[PATCH 08/12] store: Define MMS_META_UUID_XXX len and suffix

2012-08-17 Thread Ronald Tessier
--- src/store.c |8 +++- src/store.h |5 + 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/store.c b/src/store.c index b09c17b..f1c5714 100644 --- a/src/store.c +++ b/src/store.c @@ -42,8 +42,6 @@ #define TFR #endif -#define MMS_SHA1_UUID_LEN 20 - static con

[PATCH 07/12] service: Support delivery_ind notif on start

2012-08-17 Thread Ronald Tessier
--- src/service.c |5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/service.c b/src/service.c index 8087477..b3ecc1e 100644 --- a/src/service.c +++ b/src/service.c @@ -1357,7 +1357,8 @@ static gboolean load_message_from_store(const char *service_id, else if (s

[PATCH 06/12] service: Support M-Delivery.ind in mms_service_push_notify()

2012-08-17 Thread Ronald Tessier
--- src/service.c | 31 +++ 1 file changed, 31 insertions(+) diff --git a/src/service.c b/src/service.c index ec1b1b9..8087477 100644 --- a/src/service.c +++ b/src/service.c @@ -2325,6 +2325,21 @@ static void process_request_queue(struct mms_service *service)

[PATCH 05/12] service: Add a group [delivery_status] in the msg status

2012-08-17 Thread Ronald Tessier
This group contains an entry for each message recipients. Each recipient entry will be updated when the corresponding report will be received and then remove the temporary stored delivery report. --- src/service.c | 33 + 1 file changed, 33 insertions(+) diff --g

[PATCH 04/12] service: Move mms_address_to_string() up

2012-08-17 Thread Ronald Tessier
--- src/service.c | 26 +- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/service.c b/src/service.c index b073ca9..c3dc40a 100644 --- a/src/service.c +++ b/src/service.c @@ -354,6 +354,19 @@ static gboolean mmap_file(const char *path, void **out_pdu,

[PATCH 03/12] service: Store msg_id provided by M-Send.conf PDU

2012-08-17 Thread Ronald Tessier
--- src/service.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/service.c b/src/service.c index db9c514..b073ca9 100644 --- a/src/service.c +++ b/src/service.c @@ -629,7 +629,7 @@ static gboolean result_request_send_conf(struct mms_request *request)

[PATCH 02/12] mmsutil: Decode delivery_ind msg

2012-08-17 Thread Ronald Tessier
--- src/mmsutil.c | 22 +- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/src/mmsutil.c b/src/mmsutil.c index a9a12eb..7042276 100644 --- a/src/mmsutil.c +++ b/src/mmsutil.c @@ -964,6 +964,24 @@ static gboolean decode_send_req(struct wsp_header_iter *iter,

[PATCH 01/12] mmsutil: Define mms_delivery_ind struct

2012-08-17 Thread Ronald Tessier
--- src/mmsutil.h |8 1 file changed, 8 insertions(+) diff --git a/src/mmsutil.h b/src/mmsutil.h index cc3ec67..e32c761 100644 --- a/src/mmsutil.h +++ b/src/mmsutil.h @@ -122,6 +122,13 @@ struct mms_notification_resp_ind { enum mms_message_notify_status notify_status; }; +

[PATCH 00/12] mmsd: Support Delivery Report notification

2012-08-17 Thread Ronald Tessier
These patches concern mmsd and add delivery report notification support. Add MMS M-Delivery.ind PDU decoding support. Update meta file of the sent message to store the received msg_id and to add a group [delivery_status] if delivery_report is requested. Upon MMS M-Delivery.ind PDU reception, update

Re: [PATCH 1/2] dundee: add timeout to close stalled ppp handshake

2012-08-17 Thread Daniel Wagner
Hi Gustavo, On Tue, Aug 14, 2012 at 04:14:31AM -0300, Gustavo Padovan wrote: > From: Gustavo Padovan > > If something goes wrong the PPP handshake can stall, then we just add a > timer to return an error after a certain timeout (15 seconds). Both patches applied. I also updated the documentati

Re: [PATCH] dundee: disconnect bluetooth link in case dial fails

2012-08-17 Thread Daniel Wagner
Hi Gustavo, On Mon, Aug 13, 2012 at 06:52:06PM -0300, Gustavo Padovan wrote: > From: Gustavo Padovan > > If the ATD*99# dial fails for some reason, NO CARRIER, for example, we > need to disconnect the bluetooth link and do further clean up on > disconnect_callback(). Patch applied. thanks, dan

[PATCH 2/2] telit: add additional port for data connection

2012-08-17 Thread Christopher Vogl
Use MDM port for data service and AUX for the AT chat. Disable DCD so that the modem does not hangup after a data connection. --- plugins/telit.c | 55 ++- 1 files changed, 34 insertions(+), 21 deletions(-) diff --git a/plugins/telit.c b/plugi

[PATCH 2/2] telit: add additional port for data connection

2012-08-17 Thread Christopher Vogl
Use MDM port for data service and AUX for the AT chat. Disable DCD so that the modem does not hangup after a data connection. Add vendor for sim and gprs. --- plugins/telit.c | 55 ++- 1 files changed, 34 insertions(+), 21 deletions(-) diff --

[PATCH 1/2] udevng: rename aux port from Data to Aux for telit.

2012-08-17 Thread Christopher Vogl
Telit software user guide says: USB AUX doesn't support any flow control method. Therefore, this port isn't suitable for DATA service port. We recommend this port should be used only for AT command and URC processing. --- plugins/udevng.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-)

Re: [PATCH 2/8] telit: add additional port for data connection

2012-08-17 Thread Christopher Vogl
Hi Denis and Gustavo, On 13/08/12 19:03, Denis Kenzior wrote: Hi Christopher, CC-ing Gustavo since he wrote much of the SAP bits in this driver... On 08/13/2012 08:17 AM, Christopher Vogl wrote: Use MDM port for data service and AUX for the AT chat. Disable DCD so that the modem does not hang