Re: [PATCH] stkutil: convert text attributes to html

2010-06-16 Thread Marcel Holtmann
Hi Kristen, --- src/stkutil.c | 195 + src/stkutil.h | 21 ++ 2 files changed, 216 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index 8ac1dba..6244d03 100644 --- a/src/stkutil.c +++

Re: [PATCH 01/12] stk: Add parser for send ss commands

2010-06-16 Thread Denis Kenzior
Hi Yang, --- src/stkutil.c | 70 + src/stkutil.h | 15 2 files changed, 85 insertions(+), 0 deletions(-) Patches 1-2, 7-9 and 11-12 in this series have been applied. For others, please see individual comments and

Re: [PATCH 10/12] stk: Add parser for timing advance objects

2010-06-16 Thread andrzej zaborowski
Hi, On 13 June 2010 11:43, Yang Gu yang...@intel.com wrote: +enum stk_me_status { +       STK_ME_STATUS_IDLE =            0x00, +       STK_ME_STATUS_NOT_IDLE =        0x01 +}; +  /* For data object that only has a byte array with undetermined length */  struct stk_common_byte_array {    

RE: [PATCH 10/12] stk: Add parser for timing advance objects

2010-06-16 Thread Gu, Yang
Hi Andrew, -Original Message- From: ofono-boun...@ofono.org [mailto:ofono-boun...@ofono.org] On Behalf Of andrzej zaborowski Sent: Thursday, June 17, 2010 7:19 AM To: ofono@ofono.org Subject: Re: [PATCH 10/12] stk: Add parser for timing advance objects Hi, On 13 June 2010 11:43, Yang Gu

[PATCH 2/4] stk: Allow registering proactive command handlers.

2010-06-16 Thread Andrzej Zaborowski
--- src/stk.c | 144 +++-- 1 files changed, 131 insertions(+), 13 deletions(-) diff --git a/src/stk.c b/src/stk.c index f472a63..1dd5b77 100644 --- a/src/stk.c +++ b/src/stk.c @@ -40,14 +40,85 @@ static GSList *g_drivers = NULL;

[PATCH 1/4][RFC] stkutil: Refactor command parser error handling

2010-06-16 Thread Andrzej Zaborowski
When parsing the full command fails but Command Details has been parsed, return a struct stk_command containing this information and the type of parsing problem found. We need the command details to be able to even respond to the command. This patch also makes the parser skip over unknown data