summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-03-24Release 0.20Marcel Holtmann2-1/+9
2010-03-23Fix: Handle broken modems that returns empty COPSDenis Kenzior1-0/+20
2010-03-23Move netreg interface definitions to dbus.hDenis Kenzior2-60/+59
2010-03-23Style: Fixup some style issuesDenis Kenzior1-11/+28
- Large if statements should be handled as switchcase - Avoid initialization of variables, even if code needs to be rearranged
2010-03-23Add parser for file list objectsYang Gu2-0/+99
2010-03-23Fix: trivial formatting fix in call settings apiDenis Kenzior1-1/+2
2010-03-22Remove pointless optimization attempt with g_list_length()Marcel Holtmann1-8/+1
2010-03-22Use password instead of passwd as variable nameMarcel Holtmann2-5/+5
2010-03-22The g_free() function checks for NULL pointersMarcel Holtmann1-5/+3
And so does even the free() function from glibc ;)
2010-03-22Unnest some more functions in PPP CP implementationMarcel Holtmann1-19/+20
2010-03-22Some additional whitespace cleanup for PPP codeMarcel Holtmann5-11/+15
2010-03-22Fix the broken PPP CP debug trace functionMarcel Holtmann1-5/+6
2010-03-22Remove some heavy nesting that is not needed at allMarcel Holtmann1-15/+15
2010-03-22Fix another pointer casting issue on 32-bit systemsMarcel Holtmann1-9/+11
2010-03-22Fix pointer casting with uint16 protocol variableMarcel Holtmann1-5/+4
2010-03-22Mention Kristen's contributionsMarcel Holtmann1-0/+1
2010-03-22Add PPP option to gsmdialKristen Carlson Accardi1-3/+84
Implement new options for gsmdial to use PPP and set the user name and password for authentication if needed.
2010-03-22IP support for PPPKristen Carlson Accardi5-1/+371
Adds IPCP support, and creates a TUN interface for sending/receiving IP packets.
2010-03-22CHAP with MD5 authentication supportKristen Carlson Accardi6-2/+259
Authentication support with CHAP and MD5
2010-03-22PPP LCP supportKristen Carlson Accardi5-2/+306
Implement LCP support for the PPP protocol.
2010-03-22Generic PPP control protocol supportKristen Carlson Accardi4-1/+1646
Implement a generic protocol that can be shared by both the LCP and the NCP implementation.
2010-03-22Basic PPP protocol supportKristen Carlson Accardi5-1/+778
This patch implements the basic PPP protocol. LCP, NCP etc. are handled in a different patch.
2010-03-22Move sim manager interface definition to dbus.hDenis Kenzior2-26/+22
2010-03-22Move cbs interface definition to dbus.hDenis Kenzior2-12/+11
2010-03-22Move call volume interface definition to dbus.hDenis Kenzior2-14/+19
2010-03-22Move mwi interface definition to dbus.hDenis Kenzior2-14/+13
2010-03-22Move radio settings interface definition to dbus.hDenis Kenzior2-8/+7
2010-03-22Move sms interface definition to dbus.hDenis Kenzior2-9/+8
2010-03-22Move voicecall interface definitions to dbus.hDenis Kenzior2-28/+26
2010-03-22Add message-waiting apiDenis Kenzior1-0/+45
2010-03-22Add call-volume apiDenis Kenzior1-0/+42
2010-03-22Add cell broadcast APIDenis Kenzior1-0/+71
2010-03-22Add phonebook-api documentDenis Kenzior1-0/+18
2010-03-22Fix: extract line should use S3, not hardcode CRDenis Kenzior1-3/+4
2010-03-22Refactor: Command line extractionDenis Kenzior1-4/+10
2010-03-22Refactor: Extended command parsingDenis Kenzior2-118/+96
Make the code more bullet proof and easier to follow
2010-03-22Add G_AT_SERVER_RESULT_EXT_ERRORZhenhua Zhang1-0/+1
2010-03-22Add g_at_server_register and unregister callbackZhenhua Zhang2-0/+54
2010-03-22Add notify at command callbackZhenhua Zhang1-0/+48
2010-03-22Add server at command data structureZhenhua Zhang2-0/+49
2010-03-22Add extended command parsingZhenhua Zhang1-2/+69
2010-03-22Add framework of server parserZhenhua Zhang1-20/+26
a. The parser fetch and parse one command per loop. The prefix is the command prefix without parameter. For example, the prefix of "AT+CLIP=1" is "+CLIP". b. Search registered notification node in command_list. Invoke the callback if found. c. Termiate the execution if the result is an error. Otherwise, parse next command.
2010-03-20Revert the default statement for PIN type checkingMarcel Holtmann2-8/+5
Also fix the coding style for the switch statement and remove the number assignment for an internal enum.
2010-03-19Trivial: Add break statementDenis Kenzior1-0/+3
In case we ever extend the enum/switch and unwittingly introduce a bug.
2010-03-19Fix: Check password length based on its typePekka Pessi5-22/+48
The different password types have different length requirements, so update is_valid_pin to validate according to the password type being validated (PIN / PUK / NET)
2010-03-18huawei: use GSM permissive parser instead of V1.João Paulo Rechi Vita1-1/+1
With V1 parser the driver fails to detect when a SMS is successfully sent and keeps re-trying until Max retries.
2010-03-18Add support for IP based connections to gsmdialDenis Kenzior1-1/+51
2010-03-18Fix: Echo everything as soon as receivedDenis Kenzior1-4/+5
2010-03-18Update sim-api.txtDenis Kenzior1-1/+1
2010-03-18Refactor add is_basic_command_prefix functionZhenhua Zhang1-2/+13