summaryrefslogtreecommitdiff
path: root/gatchat/gatserver.h
Commit message (Collapse)AuthorAgeFilesLines
* gatchat: Update copyright informationMarcel Holtmann2011-10-101-1/+1
|
* gatserver: Add command finished callbacksDenis Kenzior2011-08-151-0/+7
|
* gatserver: Add function to enable/disable echoFrédéric Dalleau2011-02-231-0/+1
|
* gatserver: Be more const correctDenis Kenzior2011-02-161-1/+1
|
* gatserver: Change callback signatureDenis Kenzior2011-02-151-1/+2
| | | | Provide the originating GAtServer to the callback
* gatserver: Suspend/resume GAtServer with GAtIOZhenhua Zhang2010-06-171-0/+5
| | | | | Support g_at_server_suspend and g_at_server_resume operation by using GAtIO to handle IO related function.
* The user data pointer variable should be called user_dataMarcel Holtmann2010-04-111-1/+1
|
* Simplify the send_info APIDenis Kenzior2010-03-301-8/+4
|
* Refactor: Add a single-line response functionDenis Kenzior2010-03-301-1/+9
|
* Add API stubs for unsolicited / final responsesZhenhua Zhang2010-03-301-0/+17
|
* Refactor: Extended command parsingDenis Kenzior2010-03-221-4/+3
| | | | Make the code more bullet proof and easier to follow
* Add G_AT_SERVER_RESULT_EXT_ERRORZhenhua Zhang2010-03-221-0/+1
|
* Add g_at_server_register and unregister callbackZhenhua Zhang2010-03-221-0/+6
|
* Add server at command data structureZhenhua Zhang2010-03-221-0/+22
|
* Refactor: Make enums follow 27.007 Annex BDenis Kenzior2010-02-011-9/+10
|
* Add GAtServer basic parsing supportZhenhua Zhang2010-02-011-0/+65
It's the basic skeleton of GAtServer, including new/shutdown, ref/ unref, received_data/parse_buffer and set_discuss/set_debug. GAtServer is to emulate the server side of AT conversation. It complies with V.250 and 27.007 spec to accept AT command like ATV1, ATE0 and extended command like AT+CLCC. Upper layer could create customize server to expose TTY, tcp or unix socket to client side application.