summaryrefslogtreecommitdiffstats
path: root/gatchat/gatresult.c
AgeCommit message (Collapse)AuthorFilesLines
2011-10-10gatchat: Update copyright informationMarcel Holtmann1-1/+1
2011-02-24gatchat: add g_at_result_iter_next_number_default APIFrédéric Danis1-0/+30
2010-11-29gatchat: explicitly compare pointers to NULLLucas De Marchi1-22/+22
This patch was generated by the following semantic patch (http://coccinelle.lip6.fr/) // <smpl> @fix disable is_null,isnt_null1@ expression *E; @@ - !E + E == NULL // </smpl>
2010-01-01Update copyright informationMarcel Holtmann1-1/+1
2009-11-10Properly skip over quoted valuesAndrzej Zaborowski1-0/+11
Otherwise a left paren in a string can bring an obscure segfault.
2009-10-23Handle right bracket in next_unquoted_stringZhenhua Zhang1-2/+2
2009-10-02Fix: Make next_hexstring handle optional quotesDenis Kenzior1-0/+6
Ericsson MBM devices send CRSM information as hex strings, yet enclose them in quotes which is not according to the standard.
2009-09-03Add unquoted string capabilityDenis Kenzior1-0/+45
This is completely broken according to the standard, but some vendors use this in their "special" commands.
2009-07-15Fix range handlingDenis Kenzior1-5/+2
2009-07-01Fix uninitialized use of bufposDenis Kenzior1-1/+2
2009-06-16Improve string parsing codeDenis Kenzior1-15/+18
Currently next_string and next_hexstring functions use a static buffer in the iterator to store the value. This value is clobbered as soon as next_string or next_hexstring is called. Instead, we copy the entire line in iter_next and use it as a scratch buffer. The only limitation is that lines of max 2048 are possible, however these are limited to around this size by parts of the standard.
2009-05-26Add hex-encoded character string getter to AtChatAndrzej Zaborowski1-0/+53
2009-05-06Add AT chat library implementationDenis Kenzior1-0/+377