summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-04-29Fix memory leak in g_dbus_register_interfaceJohan Hedberg1-1/+3
2010-04-29ppp: silently drop invalid packetsKristen Carlson Accardi1-8/+28
2010-04-29ppp: transition to dead when read io destroyedKristen Carlson Accardi2-1/+3
remove call to signal_close for lcp object, it is redundent. If our io is destroyed we are dead, so transition the ppp phase to DEAD so our disconnect callback can be called.
2010-04-28ppp: Hang set_recording off the GAtPPP objectDenis Kenzior3-5/+5
Marcel: recording right now only works for PPP, so we'd need some sort of multi-protocol support. So for now expose set_recording to be used through the main PPP object. HDLC object recording support needs to be extended.
2010-04-28Add unit test for get inkey parserYang Gu1-0/+1040
2010-04-28ppp: Re-add capability to detect io down eventsDenis Kenzior1-0/+9
2010-04-28gathdlc: Add accessor for GAtIODenis Kenzior3-0/+13
2010-04-28gathdlc: Port GAtHDLC to use GAtIODenis Kenzior1-129/+24
2010-04-28ppp: Don't crash if the interface wasn't createdDenis Kenzior1-0/+4
2010-04-28ppp: Accept 1500 byte MTUsDenis Kenzior1-1/+1
2010-04-28gsmdial: Use set recording on the HDLC objectDenis Kenzior1-1/+1
2010-04-28ppp: Add getter for HDLC objectDenis Kenzior2-0/+11
2010-04-28ppp: Initial port of PPP to use GAtHDLCDenis Kenzior2-360/+41
2010-04-28ppp: Make pppcp functions const correctDenis Kenzior2-35/+29
2010-04-28ppp: Make ppp_chap_process_packet const correctDenis Kenzior2-4/+4
2010-04-28ppp: Make ppp_net_process_packet const correctDenis Kenzior2-2/+2
2010-04-28gathdlc: Add recording support, ported from PPPDenis Kenzior2-0/+60
For protocol examination using wireshark
2010-04-28gathdlc: Add receive ACCM supportDenis Kenzior2-1/+23
2010-04-28gathdlc: Support transmit ACCMDenis Kenzior2-2/+27
2010-04-28gatchat: Don't try to cleanup twiceDenis Kenzior1-11/+8
In case we get unrefed from the disconnect callback
2010-04-28gatchat: Use GAtIO for write watchersDenis Kenzior1-65/+21
2010-04-28gatio: support for blocking / nonblocking writesDenis Kenzior2-4/+105
2010-04-28gatchat: get_channel should return one from GAtIODenis Kenzior1-2/+2
2010-04-28gatchat: Channel is now setup by GAtIODenis Kenzior1-2/+0
2010-04-28gatchat: Better re-entrancy handlingDenis Kenzior1-6/+13
2010-04-28gsmdial: Get rid of g_at_chat_shutdown usageDenis Kenzior1-9/+16
2010-04-28gsmdial: Unref the chat instead of using shutdownDenis Kenzior1-2/+2
2010-04-28gatmux: Unref the chat instead of using shutdownDenis Kenzior1-1/+2
2010-04-28Fix: For now calling g_at_chat_unref is fineDenis Kenzior1-1/+1
Same as g_at_chat_shutdown in this case
2010-04-28Fix: g_at_chat_shutdown usage in test-muxDenis Kenzior1-1/+0
2010-04-28Fix: Remove easy uses of g_at_chat_shutdownDenis Kenzior8-12/+0
2010-04-28gatchat: Only set debug on IO if we have itDenis Kenzior1-1/+2
2010-04-28gatchat: Replace shutdown by suspend/resumeDenis Kenzior2-13/+29
Shutdown was actually pointless and according to Marcel he only had it in mind for PPP useage.
2010-04-28gatchat: port gatchat to use gatioDenis Kenzior1-112/+41
2010-04-28gatio: Remove g_at_io_shutdownDenis Kenzior2-18/+13
2010-04-28gatio: Get re-entrancy correctDenis Kenzior1-3/+6
2010-04-28gatio: Style fix for gsource id comparisonsDenis Kenzior1-2/+2
2010-04-28gatio: Kill the reader when no more spaceDenis Kenzior1-0/+4
2010-04-28gatchat: Remove g_at_chat_set_syntaxDenis Kenzior2-14/+0
Never used and too unsafe in its current form
2010-04-28gatchat: Add initial GAtIO implementationDenis Kenzior3-0/+326
2010-04-27Add sane default to dial-number scriptAki Niemi1-1/+4
2010-04-27gisi: remove misplaced defineAki Niemi1-2/+0
2010-04-27gisi: refactor client implementationAki Niemi2-214/+313
2010-04-27Fix typo in gprs driverAki Niemi1-1/+1
2010-04-27Fix faulty logic in netreg driverAki Niemi1-24/+21
Also add missing tech param.
2010-04-27Fix remove ops in isimodem driversAki Niemi8-31/+42
2010-04-27Fix style issues in isimodemAki Niemi14-53/+61
2010-04-27stkutil: Make get inkey parser use its own structYang Gu2-5/+11
2010-04-27stkutil: Use char* instead of char**Yang Gu1-14/+14
char ** should only be used for character arrays that are allocated by the parser. Static buffers should be passed as char*
2010-04-27test-stkutil: Add unit test for more time parserYang Gu1-0/+38