Re: [PATCH 6/6] Add PPP option to gsmdial

2010-03-23 Thread Marcel Holtmann
Hi Gustavo, +static void connect_cb(gboolean ok, GAtResult *result, gpointer user_data) +{ + GIOChannel *channel; + + if (!ok) { + g_print(Unable to define context\n); + exit(1); I guess we should not call exit here. Just return. it is a test program. So

[PATCH 6/6] Add PPP option to gsmdial

2010-03-22 Thread Kristen Carlson Accardi
Implement new options for gsmdial to use PPP and set the user name and password for authentication if needed. --- gatchat/gsmdial.c | 87 +++-- 1 files changed, 84 insertions(+), 3 deletions(-) diff --git a/gatchat/gsmdial.c b/gatchat/gsmdial.c

Re: [PATCH 6/6] Add PPP option to gsmdial

2010-03-22 Thread Gustavo F. Padovan
* Kristen Carlson Accardi kris...@linux.intel.com [2010-03-22 17:06:01 -0700]: Implement new options for gsmdial to use PPP and set the user name and password for authentication if needed. --- gatchat/gsmdial.c | 87 +++-- 1 files changed,