summaryrefslogtreecommitdiff
path: root/gatchat/gatresult.c
Commit message (Collapse)AuthorAgeFilesLines
* gatchat: add g_at_result_iter_next_number_default APIFrédéric Danis2011-02-241-0/+30
|
* gatchat: explicitly compare pointers to NULLLucas De Marchi2010-11-291-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>
* Update copyright informationMarcel Holtmann2010-01-011-1/+1
|
* Properly skip over quoted valuesAndrzej Zaborowski2009-11-101-0/+11
| | | | Otherwise a left paren in a string can bring an obscure segfault.
* Handle right bracket in next_unquoted_stringZhenhua Zhang2009-10-231-2/+2
|
* Fix: Make next_hexstring handle optional quotesDenis Kenzior2009-10-021-0/+6
| | | | | Ericsson MBM devices send CRSM information as hex strings, yet enclose them in quotes which is not according to the standard.
* Add unquoted string capabilityDenis Kenzior2009-09-031-0/+45
| | | | | This is completely broken according to the standard, but some vendors use this in their "special" commands.
* Fix range handlingDenis Kenzior2009-07-151-5/+2
|
* Fix uninitialized use of bufposDenis Kenzior2009-07-011-1/+2
|
* Improve string parsing codeDenis Kenzior2009-06-161-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.
* Add hex-encoded character string getter to AtChatAndrzej Zaborowski2009-05-261-0/+53
|
* Add AT chat library implementationDenis Kenzior2009-05-061-0/+377