Re: [PATCH 3/3] call-forwarding: Watch for changes to relevant SIM files.

2011-03-15 Thread Denis Kenzior
Hi Andrew, On 02/18/2011 09:54 PM, Andrzej Zaborowski wrote: > --- > src/call-forwarding.c | 45 - > 1 files changed, 44 insertions(+), 1 deletions(-) > Patch has been applied, thanks. Regards, -Denis ___

Re: [PATCH 2/3] message-waiting: Watch for changes to relevant SIM files.

2011-03-15 Thread Denis Kenzior
Hi Andrew, On 02/18/2011 09:54 PM, Andrzej Zaborowski wrote: > --- > src/message-waiting.c | 92 > - > 1 files changed, 91 insertions(+), 1 deletions(-) > Patch has been applied, thanks. Regards, -Denis

Re: [PATCH 1/3] sim: Watch for changes to relevant SIM files.

2011-03-15 Thread Denis Kenzior
Hi Andrew, On 02/18/2011 09:54 PM, Andrzej Zaborowski wrote: > --- > src/sim.c | 170 > - > 1 files changed, 157 insertions(+), 13 deletions(-) > I split this patch up into three and applied it. Thanks. Regards, -Denis

Re: [RESEND 3 PATCH 00/13] IPv6 Support

2011-03-15 Thread Denis Kenzior
Hi Mika, On 03/07/2011 08:02 AM, Mika Liljeberg wrote: > Hi All, > > Patches rebased to current master. > > Regards, > > MikaL > > "IPv6 host walked into a bar. No-one would talk to it." > > [RESEND 3 PATCH 01/13] gprs: factor out common code > [RESEND 3 PATCH 02/13] gprs: Update docume

Re: [PATCH] PPP: Optimize write buffer management

2011-03-15 Thread Denis Kenzior
Hi Patrick, On 03/08/2011 09:58 AM, Patrick Porlan wrote: > Extend the write buffer handling in gathdlc.c to minimize stalling and > process switching during large PPP transfers. The single write buffer > is replaced by a queue of buffers, allowing for much larger emission > windows without hugely

Re: [PATCH] Fix huawei_disconnect function issue

2011-03-15 Thread Denis Kenzior
Hi Martin, On 03/08/2011 11:27 PM, martin...@intel.com wrote: > From: Martin Xu > > huawei_disconnect is used to recovery the io and gprs context when > io error happends, see commit 39382730d7758b093ca6271f4e9dea875fa04b3a > However, io error not only happends at PPP disconnect, in theory it >

Re: [PATCH] emulator: fix some indentation issues

2011-03-15 Thread Denis Kenzior
Hi Guillaume, On 03/15/2011 08:10 AM, Guillaume Zajac wrote: > --- > src/emulator.c | 116 > > 1 files changed, 58 insertions(+), 58 deletions(-) > Patch has been applied, thanks. Regards, -Denis ___

RE: [HELP Required]Routing Of SCO data to BT Host Speaker

2011-03-15 Thread Andreas Hohn
Hi Milan, I'm not sure if you succeeded in the mean time. we had a similar issue when we used the Fedora pre-installed pulseaudio version. When I downloaded and compiled the latest sources it wouked in our case. Regards, Andreas ofono-boun...@ofono.org wrote on 11.03.2011 15:43:59: > Hi

RE: [PATCH v2] call-forwarding: fix for showing call forwarding states

2011-03-15 Thread Jussi Kangas
Hi Arun, On Tue, 2011-03-15 at 15:59 +0200, arun.ravind...@elektrobit.com wrote: > What is the "removal of CALL_FORWARDING_ALL_CONDITIONAL worked little > bit oddly without break" issue? Oh, nothing major. I tried to refer to the stuff in next sentence: "Results visible to API were correct but t

RE: [PATCH v2] call-forwarding: fix for showing call forwarding states

2011-03-15 Thread Arun.Ravindran
Hi Jussi, > Subject: [PATCH v2] call-forwarding: fix for showing call > forwarding states > > --- > > Hi, > > Here is a updated version of the call forwarding state fix. I > changed the indentations and zero comparisons according the > feedback from Denis. Also I decided to add data freei

[PATCH v2] call-forwarding: fix for showing call forwarding states

2011-03-15 Thread Jussi Kangas
--- Hi, Here is a updated version of the call forwarding state fix. I changed the indentations and zero comparisons according the feedback from Denis. Also I decided to add data freeing in set_property_callback and break in cf_ss_control as commented and not as I speculated at first. I noticed

[PATCH] emulator: fix some indentation issues

2011-03-15 Thread Guillaume Zajac
--- src/emulator.c | 116 1 files changed, 58 insertions(+), 58 deletions(-) diff --git a/src/emulator.c b/src/emulator.c index 20a575f..c84f0a9 100644 --- a/src/emulator.c +++ b/src/emulator.c @@ -73,108 +73,108 @@ static void emulator_di

Re: [PATCH] unit: Add unit test for stemodem driver

2011-03-15 Thread Lasse Kunnasluoto
Hi Marcel, On Mon, 2011-03-14 at 18:35 +0200, Marcel Holtmann wrote: > Hi Lass,e > > > Here is an updated version of STE unit test, originally done by Marit (sent > > on 15th of Feb). > > This one should apply smoothly > > one question ahead of time. Are you guys up to the task to maintain thi

[PATCH 6/6] emulator: add ppp_suspend implementation and registration.

2011-03-15 Thread Guillaume Zajac
--- src/emulator.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/emulator.c b/src/emulator.c index 20a575f..5179ea9 100644 --- a/src/emulator.c +++ b/src/emulator.c @@ -99,6 +99,15 @@ static void ppp_disconnect(GAtPPPDisconnectReason reason, gpointer user_

[PATCH 3/6] gathdlc: add mechanism to detect ppp suspension from DUN client.

2011-03-15 Thread Guillaume Zajac
--- gatchat/gathdlc.c | 58 + 1 files changed, 58 insertions(+), 0 deletions(-) diff --git a/gatchat/gathdlc.c b/gatchat/gathdlc.c index 6c39e6c..38606b8 100644 --- a/gatchat/gathdlc.c +++ b/gatchat/gathdlc.c @@ -66,6 +66,10 @@ struct _GAtHDLC

[PATCH 5/6] gatppp: add g_at_ppp_set_suspend_function() definition.

2011-03-15 Thread Guillaume Zajac
--- gatchat/gatppp.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/gatchat/gatppp.c b/gatchat/gatppp.c index 993b5ea..9df6b8e 100644 --- a/gatchat/gatppp.c +++ b/gatchat/gatppp.c @@ -467,6 +467,14 @@ void g_at_ppp_set_debug(GAtPPP *ppp, GAtDebugFunc func, gpointe

[PATCH 4/6] gatppp: add prototype to set ppp suspend function.

2011-03-15 Thread Guillaume Zajac
--- gatchat/gatppp.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/gatchat/gatppp.h b/gatchat/gatppp.h index fb5de4c..7835d1f 100644 --- a/gatchat/gatppp.h +++ b/gatchat/gatppp.h @@ -61,6 +61,8 @@ void g_at_ppp_set_connect_function(GAtPPP *ppp, GAtPPPConnectFunc callba

[PATCH 2/6] gathdlc: add prototype to set suspend function.

2011-03-15 Thread Guillaume Zajac
--- gatchat/gathdlc.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/gatchat/gathdlc.h b/gatchat/gathdlc.h index 95c389e..158f27f 100644 --- a/gatchat/gathdlc.h +++ b/gatchat/gathdlc.h @@ -57,6 +57,9 @@ GAtIO *g_at_hdlc_get_io(GAtHDLC *hdlc); void g_at_hdlc_set_no_ca

[PATCH 1/6] gat: add GAtSuspendFunc CB typedef

2011-03-15 Thread Guillaume Zajac
--- gatchat/gat.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/gatchat/gat.h b/gatchat/gat.h index ddf8695..f067389 100644 --- a/gatchat/gat.h +++ b/gatchat/gat.h @@ -32,6 +32,7 @@ typedef void (*GAtDisconnectFunc)(gpointer user_data); typedef void (*GAtReceiveFunc)(co

[PATCH 0/6] PPP suspend mechanism implementation

2011-03-15 Thread Guillaume Zajac
This set of patch will make hdlc layer detecting "+...+...+" character to suspend PPP server and resume AT server: either for receiving ATH (implemented in one other future patch) either for receiving ATO (implemented in a future 2nd set of patch) Guillaume Zajac (6): gat: add GAtSuspendFunc C