[PATCH 01/12] gprs: Update documentation for IPv6

2011-02-03 Thread Mika Liljeberg
--- doc/connman-api.txt |9 +++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/doc/connman-api.txt b/doc/connman-api.txt index 22c59dc..de1b938 100644 --- a/doc/connman-api.txt +++ b/doc/connman-api.txt @@ -182,7 +182,7 @@ Properties boolean Active [readwrite]

[PATCH 02/12] gprs: driver interface changes for IPv6

2011-02-03 Thread Mika Liljeberg
--- include/gprs-context.h | 21 + 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/include/gprs-context.h b/include/gprs-context.h index c29c0dc..88530f6 100644 --- a/include/gprs-context.h +++ b/include/gprs-context.h @@ -37,6 +37,7 @@ struct

[PATCH 04/12] test: modify test scripts for IPv6

2011-02-03 Thread Mika Liljeberg
--- Makefile.am |3 ++- test/list-contexts|6 +++--- test/set-context-property | 38 ++ 3 files changed, 43 insertions(+), 4 deletions(-) create mode 100755 test/set-context-property diff --git a/Makefile.am b/Makefile.am index

[PATCH 07/12] huaweimodem: update to new gprs context interface

2011-02-03 Thread Mika Liljeberg
--- drivers/huaweimodem/gprs-context.c | 43 +--- 1 files changed, 25 insertions(+), 18 deletions(-) diff --git a/drivers/huaweimodem/gprs-context.c b/drivers/huaweimodem/gprs-context.c index bbc9c96..67d933e 100644 --- a/drivers/huaweimodem/gprs-context.c +++

[PATCH 08/12] mbmmodem: update to new gprs context interface

2011-02-03 Thread Mika Liljeberg
--- drivers/mbmmodem/gprs-context.c | 65 --- 1 files changed, 40 insertions(+), 25 deletions(-) diff --git a/drivers/mbmmodem/gprs-context.c b/drivers/mbmmodem/gprs-context.c index 322f96d..972b35e 100644 --- a/drivers/mbmmodem/gprs-context.c +++

[PATCH 10/12] ifxmodem: update to new gprs context interface

2011-02-03 Thread Mika Liljeberg
--- drivers/ifxmodem/gprs-context.c | 36 +--- 1 files changed, 21 insertions(+), 15 deletions(-) diff --git a/drivers/ifxmodem/gprs-context.c b/drivers/ifxmodem/gprs-context.c index 2c68b44..91dee8c 100644 --- a/drivers/ifxmodem/gprs-context.c +++

[PATCH 09/12] hsomodem: update to new gprs context interface

2011-02-03 Thread Mika Liljeberg
--- drivers/hsomodem/gprs-context.c | 48 ++- 1 files changed, 27 insertions(+), 21 deletions(-) diff --git a/drivers/hsomodem/gprs-context.c b/drivers/hsomodem/gprs-context.c index c132846..f9f1696 100644 --- a/drivers/hsomodem/gprs-context.c +++

[PATCH 11/12] stemodem: update to new gprs context interface

2011-02-03 Thread Mika Liljeberg
--- drivers/stemodem/gprs-context.c | 31 +++ 1 files changed, 19 insertions(+), 12 deletions(-) diff --git a/drivers/stemodem/gprs-context.c b/drivers/stemodem/gprs-context.c index e247f35..7266810 100644 --- a/drivers/stemodem/gprs-context.c +++

[PATCH 12/12] phonesim: add IPv6 support

2011-02-03 Thread Mika Liljeberg
--- plugins/phonesim.c | 32 +--- 1 files changed, 25 insertions(+), 7 deletions(-) diff --git a/plugins/phonesim.c b/plugins/phonesim.c index 2b36fe0..2634d23 100644 --- a/plugins/phonesim.c +++ b/plugins/phonesim.c @@ -83,14 +83,17 @@ struct gprs_context_data {

Re: [RFC] voicecall API changes (proposal 2)

2011-02-03 Thread Andras Domokos
Hi Denis, On 02/02/2011 10:01 PM, ext Denis Kenzior wrote: Hi Andras, + + boolean ForwardedCall + + Contains the indication whether the incoming voice call + is a redirected call due to a call forwarding operation +

RE: [RFC 2/2] doc: Add description for history agent interface

2011-02-03 Thread mikhail.zabaluev
Hi Denis, -Original Message- From: ext Denis Kenzior [mailto:denk...@gmail.com] Sent: Wednesday, February 02, 2011 9:23 PM To: ofono@ofono.org Cc: Zabaluev Mikhail (Nokia-MS/Helsinki) Subject: Re: [RFC 2/2] doc: Add description for history agent interface This has been discussed

Re: [PATCH 1/2] isimodem: fix problems in call state reporting

2011-02-03 Thread Aki Niemi
Hi Pekka, 2011/2/2 pekka.pe...@nokia.com: From: Pekka Pessi pekka.pe...@nokia.com Do not report early incoming calls. Report disconnected state separately. Call ofono_voicecall_disconnected() only after call id is released. ---  drivers/isimodem/voicecall.c |   84

[PATCH] stemodem: Check for ok in voicecall_initialize.

2011-02-03 Thread Marit Henriksen
From: Marit Henriksen marit.henrik...@stericsson.com --- drivers/stemodem/voicecall.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/stemodem/voicecall.c b/drivers/stemodem/voicecall.c index fa078a8..2eaba8c 100644 --- a/drivers/stemodem/voicecall.c +++

[PATCH] test: Find the active call and do hangup on that.

2011-02-03 Thread Marit Henriksen
From: Marit Henriksen marit.henrik...@stericsson.com --- test/hangup-active | 12 +--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git a/test/hangup-active b/test/hangup-active index 52dd2c6..6444b23 100755 --- a/test/hangup-active +++ b/test/hangup-active @@ -15,9 +15,15

[PATCH 3/6] util: Add best dialect picker API

2011-02-03 Thread Aki Niemi
--- src/util.c | 64 src/util.h |7 ++ 2 files changed, 71 insertions(+), 0 deletions(-) diff --git a/src/util.c b/src/util.c index 547f38c..e1e8a0a 100644 --- a/src/util.c +++ b/src/util.c @@ -788,6 +788,70 @@ unsigned char

[PATCH 2/2] TODO: Remove completed CPHS CSP task

2011-02-03 Thread Aki Niemi
--- TODO | 13 - 1 files changed, 0 insertions(+), 13 deletions(-) diff --git a/TODO b/TODO index 13a6baa..82066fa 100644 --- a/TODO +++ b/TODO @@ -88,19 +88,6 @@ SIM / SIM File system Complexity: C1 Owner: Marit Henriksen marit.henrik...@stericsson.com -- Add support for

[PATCH 1/2] netreg: Add CPHS CSP implementation

2011-02-03 Thread Aki Niemi
--- src/network.c | 121 1 files changed, 95 insertions(+), 26 deletions(-) diff --git a/src/network.c b/src/network.c index bf61472..ef0b37f 100644 --- a/src/network.c +++ b/src/network.c @@ -42,7 +42,8 @@ enum

Re: [PATCH 1/8] bluetooth: add server support

2011-02-03 Thread Frederic Danis
Hello Gustavo, Le 02/02/2011 19:21, Gustavo F. Padovan a écrit : Hi Frederic, * Frederic Danisfrederic.da...@linux.intel.com [2011-02-01 15:17:56 +0100]: Hello Gustavo, Le 31/01/2011 21:51, Gustavo F. Padovan a écrit : Initial code to have support to listen over a RFCOMM socket for

Re: [RFC 2/2] doc: Add description for history agent interface

2011-02-03 Thread Denis Kenzior
Hi Mikhail, On 02/03/2011 05:57 AM, mikhail.zabal...@nokia.com wrote: Hi Denis, -Original Message- From: ext Denis Kenzior [mailto:denk...@gmail.com] Sent: Wednesday, February 02, 2011 9:23 PM To: ofono@ofono.org Cc: Zabaluev Mikhail (Nokia-MS/Helsinki) Subject: Re: [RFC 2/2]

Re: [RFC 2/2] doc: Add description for history agent interface

2011-02-03 Thread Denis Kenzior
Hi Mikhail, I am not really getting what you are saying. oFono will reassembly the message for you piece by piece. And we are making sure fragments are stored reliably. However once the message is complete we give it to history for further processing. Mainly to get it stored in the database.

Re: [PATCH] stemodem: Fix handling of local_release.

2011-02-03 Thread Denis Kenzior
Hi Marit, On 02/03/2011 07:15 AM, Marit Henriksen wrote: From: Marit Henriksen marit.henrik...@stericsson.com - Reset local_release when call is disconnected. - Change bitmap for affected types, ste_hangup is only called when call state is Incoming, Dialing, Alerting or Active. - Used

Re: [PATCH] plugin: add plugin for Linktop/Teracom LW273 data card

2011-02-03 Thread Amit Mendapara
The LW273 and LW272 devices are being distributed by BSNL in India with Teracom brand name. Both the devices have similar specs except data speed and having same usb id (230d:0001). Links: http://www.bsnl.in/service/3G/3G_files/3g.htm http://www.teracom.in/htmls/3G.html

Re: [PATCH] doc: Add modem Type property

2011-02-03 Thread Dara Spieker-Doyle
Hi Gustavo On 02/03/2011 11:25 AM, ext Gustavo F. Padovan wrote: Hi Dara, * Dara Spieker-Doyledara.spieker-do...@nokia.com [2011-01-20 14:48:57 -0800]: Add support for providing the type of the attached modem device including GSM (3GPP), CDMA (3GPP2) and Bluetooth HFP. ---

Re: [PATCH 4/6] smsutil: Add alphabet support to encoding

2011-02-03 Thread Denis Kenzior
Hi Aki, On 02/03/2011 07:20 AM, Aki Niemi wrote: --- src/smsutil.c | 53 ++--- src/smsutil.h | 12 2 files changed, 58 insertions(+), 7 deletions(-) Patch has been applied, thanks. Regards, -Denis

Re: [PATCH 6/6] doc: Add documentation for Alphabet property

2011-02-03 Thread Denis Kenzior
Hi Aki, On 02/03/2011 07:20 AM, Aki Niemi wrote: --- doc/message-api.txt | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/doc/message-api.txt b/doc/message-api.txt index 1c68aee..d5a7b15 100644 --- a/doc/message-api.txt +++ b/doc/message-api.txt @@

Re: [PATCH 1/2] netreg: Add CPHS CSP implementation

2011-02-03 Thread Denis Kenzior
Hi Aki, @@ -838,6 +860,9 @@ static DBusMessage *network_register(DBusConnection *conn, netreg-driver-register_auto(netreg, register_callback, netreg); + if (netreg-mode == NETWORK_REGISTRATION_MODE_AUTO_ONLY) + return NULL; + So we might just return access_denied

Re: [PATCH 1/2] netreg: Add CPHS CSP implementation

2011-02-03 Thread Aki Niemi
Hi Denis, 2011/2/3 Denis Kenzior denk...@gmail.com: +     if (netreg-mode == NETWORK_REGISTRATION_MODE_AUTO_ONLY) +             return NULL; + So we might just return access_denied here as well. There is a reason for allowing this, namely that sometimes you want to re-run the logic for

Re: [PATCH] doc: remove extra space in overview

2011-02-03 Thread Denis Kenzior
Hi Jeevaka, On 02/03/2011 03:38 PM, Jeevaka Badrappan wrote: --- doc/overview.txt |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Patch has been applied, thanks. Regards, -Denis ___ ofono mailing list ofono@ofono.org

[PATCH v2 1/2] doc: add Sim Toolkit overview

2011-02-03 Thread Jeevaka Badrappan
--- doc/overview.txt |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/doc/overview.txt b/doc/overview.txt index e12427f..2a30e0b 100644 --- a/doc/overview.txt +++ b/doc/overview.txt @@ -130,6 +130,14 @@ Current implemented features: enabling and

[PATCH v2 2/2] doc: add Sim Toolkit feature list table

2011-02-03 Thread Jeevaka Badrappan
--- doc/features.txt | 249 ++ 1 files changed, 249 insertions(+), 0 deletions(-) diff --git a/doc/features.txt b/doc/features.txt index 0862fa7..ed4c058 100644 --- a/doc/features.txt +++ b/doc/features.txt @@ -175,6 +175,255 @@ The following

[PATCH v9] ifx: Adding modem selftest for Infineon modem

2011-02-03 Thread Ramakrishna, AnandX
Infineon modem selftest, during ifx_enable(). Two steps trigger, with timeout. In case one fails, modem will not power up. --- plugins/ifx.c | 77 +++- 1 files changed, 75 insertions(+), 2 deletions(-) diff --git a/plugins/ifx.c

Re: [PATCH v2 0/2] Add Sim Toolkit overview and feature list

2011-02-03 Thread Denis Kenzior
Hi Jeevaka, On 02/03/2011 04:59 PM, Jeevaka Badrappan wrote: Hi, This patch adds the Sim Toolkit overview and feature list table. Fixes the indentation issue observed in the 1st version. Excellent stuff, thanks for doing this. Both patches have been applied. Regards, -Denis