[PATCH 2/5] atmodem: Fix GAtPPPConnectFunc interface change

2010-06-24 Thread Zhenhua Zhang
--- drivers/atmodem/gprs-context.c |5 +++-- gatchat/gsmdial.c |5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/atmodem/gprs-context.c b/drivers/atmodem/gprs-context.c index 4ddf88e..fea80b0 100644 --- a/drivers/atmodem/gprs-context.c +++ b/driv

[PATCH 1/5] gatppp: Add PPP server extension

2010-06-24 Thread Zhenhua Zhang
1. Add interface to set PPP server info by g_at_ppp_set_server_info. 2. Pass local and peer address through IPCP handshaking. --- gatchat/gatppp.c | 11 ++- gatchat/gatppp.h |6 +- gatchat/ppp.h |5 +- gatchat/ppp_ipcp.c | 239 +--

[PATCH 5/5] gsmdial: Configure network interface for PPP

2010-06-24 Thread Zhenhua Zhang
--- gatchat/gsmdial.c | 29 + 1 files changed, 29 insertions(+), 0 deletions(-) diff --git a/gatchat/gsmdial.c b/gatchat/gsmdial.c index a69a610..59f1a5c 100644 --- a/gatchat/gsmdial.c +++ b/gatchat/gsmdial.c @@ -38,6 +38,8 @@ #include #include +#define IFCONFI

[PATCH 4/5] test-server: Configure network interface

2010-06-24 Thread Zhenhua Zhang
Require ROOT priviledge to: 1. Run external command to configure and bring up network interface. 2. Enable kernel IP forwarding. --- gatchat/test-server.c | 31 +++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/gatchat/test-server.c b/gatchat/test-se

[PATCH 0/5] Add PPP server support

2010-06-24 Thread Zhenhua Zhang
Hi, I updated the patch according to the comments. Please review them. Thanks! Best Regards, Zhenhua ___ ofono mailing list ofono@ofono.org http://lists.ofono.org/listinfo/ofono

[PATCH 3/5] test-server: Add PPP server support

2010-06-24 Thread Zhenhua Zhang
So that gsmdial and wvdial could talk to test-server and establish PPP connection. --- gatchat/test-server.c | 131 ++--- 1 files changed, 123 insertions(+), 8 deletions(-) diff --git a/gatchat/test-server.c b/gatchat/test-server.c index 5c1cfa4..96faa

Re: [PATCH 0/2] Add function for diplaying text attributes as html

2010-06-24 Thread Andrzej Zaborowski
Hi, On 24 June 2010 16:00, Kristen Carlson Accardi wrote: > Kristen Carlson Accardi (2): >  stkutil: display text attributes as html >  test-stkutil: add html attribute display tests Both patches look fine to me if that matters. Regards ___ ofono mail

Re: [PATCH 1/2] stkutil: display text attributes as html

2010-06-24 Thread Marcel Holtmann
Hi Kristen, > src/stkutil.c | 167 > + > src/stkutil.h | 32 +++ > 2 files changed, 199 insertions(+), 0 deletions(-) > > diff --git a/src/stkutil.c b/src/stkutil.c > index 6f072e7..73449e2 100644 > --- a/src/stkutil.c > +++ b/s

[PATCH 0/2] Add function for diplaying text attributes as html

2010-06-24 Thread Kristen Carlson Accardi
Kristen Carlson Accardi (2): stkutil: display text attributes as html test-stkutil: add html attribute display tests src/stkutil.c | 167 +++ src/stkutil.h | 32 ++ unit/test-stkutil.c | 64 +++ 3 files c

[PATCH 2/2] test-stkutil: add html attribute display tests

2010-06-24 Thread Kristen Carlson Accardi
--- unit/test-stkutil.c | 64 +++ 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/unit/test-stkutil.c b/unit/test-stkutil.c index 8b7e254..3c0ac78 100644 --- a/unit/test-stkutil.c +++ b/unit/test-stkutil.c @@ -21923,6 +21923,63 @@ s

[PATCH 1/2] stkutil: display text attributes as html

2010-06-24 Thread Kristen Carlson Accardi
--- src/stkutil.c | 167 + src/stkutil.h | 32 +++ 2 files changed, 199 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index 6f072e7..73449e2 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -26,6 +26,7

SimApplicationAgent api

2010-06-24 Thread Andrzej Zaborowski
Hi Denis, Here are two ways the dbus interface for stk may look, specifically the part that requires a UI. Comments welcome. org.ofono.SimApplicationAgent Methods (int item, bool help) or GoBack/Terminate Menu(string title, array{string} items, bool has_help, bool

[PATCH v2 2/3] Pass down vendor flag into DCM

2010-06-24 Thread Daniel Wagner
From: Daniel Wagner --- plugins/hso.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/plugins/hso.c b/plugins/hso.c index 9e3b35a..e645221 100644 --- a/plugins/hso.c +++ b/plugins/hso.c @@ -246,7 +246,8 @@ static void hso_post_sim(struct ofono_modem *modem)

[PATCH v2 3/3] Monitor current technology used for Option modems

2010-06-24 Thread Daniel Wagner
From: Daniel Wagner --- drivers/atmodem/gprs.c | 170 1 files changed, 170 insertions(+), 0 deletions(-) diff --git a/drivers/atmodem/gprs.c b/drivers/atmodem/gprs.c index bf82d06..9988217 100644 --- a/drivers/atmodem/gprs.c +++ b/drivers/atmode

Monitor current technology

2010-06-24 Thread Daniel Wagner
This series adds a new property to DCM to export the current technology used. Changes from the last version: - The core will only update the CurrentTechnology when attached and != -1. Here is a log from ofonod: http://pastebin.com/A8r4wNqL Here is a log from ofono-monitor: http://pastebin.

[PATCH v2 1/3] Add CurrentTechnology property to DCM

2010-06-24 Thread Daniel Wagner
From: Daniel Wagner --- doc/dataconnectionmanager-api.txt |7 ++ include/gprs.h|1 + src/gprs.c| 40 + 3 files changed, 48 insertions(+), 0 deletions(-) diff --git a/doc/dataconnectionmanager-api.txt