Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-05-12 | mbm: Register sim toolkit atom in mbm plugin. | Andrzej Zaborowski | 1 | -0/+2 | |
2010-05-12 | mbm: Simplify STKR callback logic | Denis Kenzior | 1 | -5/+1 | |
2010-05-12 | mbm: Simplify STKE logic | Denis Kenzior | 1 | -6/+11 | |
We shouldn't use CALLBACK_WITH_FAILURE unless we can't parse the response from the modem. This most likely indicates an integration error. | |||||
2010-05-12 | mbm: NULL check on a g_free is not necessary | Denis Kenzior | 1 | -10/+4 | |
This is a change from previously accepted practice | |||||
2010-05-12 | mbm: Few style issues with indentation | Denis Kenzior | 1 | -7/+6 | |
2010-05-12 | mbm: Add STK driver. | Andrzej Zaborowski | 4 | -1/+261 | |
2010-05-12 | atmodem: Pass allowed response prefixes to gatchat | Andrzej Zaborowski | 1 | -6/+9 | |
Not doing this creates a race condition where any notification comming in in the middle of a sequence of commands may be counted as a response to one of the commands and get lost. | |||||
2010-05-11 | stkutil: Parse cdma tpdu in send sms parser | Yang Gu | 2 | -4/+13 | |
2010-05-11 | stkutil: Don't use escaped strings | Denis Kenzior | 1 | -4/+5 | |
In general this is bad style, using concatentated strings ala "" "" is better. | |||||
2010-05-11 | test-stkutil: Add unit test for play tone parser | Yang Gu | 1 | -0/+1356 | |
2010-05-11 | stkutil: Refactor parser for tone objects | Yang Gu | 1 | -11/+2 | |
2010-05-11 | Replace check_text with check_common_text | Yang Gu | 1 | -16/+15 | |
2010-05-11 | stkutil: Add play tone proactive command parser | Yang Gu | 2 | -0/+52 | |
2010-05-11 | stk: Unify variable names to use abbreviation | Yang Gu | 3 | -89/+88 | |
2010-05-11 | test-stkutil: Use enum for icon_id | Yang Gu | 1 | -3/+3 | |
2010-05-11 | test-stkutil: Add unit test for get input parser | Yang Gu | 1 | -20/+1392 | |
2010-05-11 | stkutil: Free default text for get input parser | Yang Gu | 1 | -0/+1 | |
2010-05-11 | ppp: fix another hardcode of ppp_packet size | Kristen Carlson Accardi | 1 | -1/+1 | |
2010-05-11 | Fix Use hashtable to record udev path | Zhenhua Zhang | 1 | -19/+39 | |
Sometimes, Udev device 'remove' event could not report correct parent node of current udev_device. Current code replies on the devpath attached on the parent node to find modem and then remove it. This fix is to change the way to store the devpath info into a hashtable. So that we search hashtable to get devpath and remove the modem. | |||||
2010-05-11 | atmodem: Fix crashes related to unremoved timeouts | Denis Kenzior | 1 | -2/+12 | |
Any timeouts set must be removed using g_source_remove. Failure to do so results in sigsegvs when the modem is randomly removed during the initialization cycle. | |||||
2010-05-10 | gsmdial: Shut down cleanly when ppp link dies | Denis Kenzior | 1 | -2/+4 | |
2010-05-10 | ppp: Keep these defines private | Denis Kenzior | 2 | -2/+3 | |
2010-05-10 | ppp: set address and control field | Kristen Carlson Accardi | 5 | -8/+16 | |
Before sending to hdlc, set the address and control field. Fix hardcode of ppp header size. | |||||
2010-05-10 | gsmdial: use g_at_ppp_new_from_io() | Kristen Carlson Accardi | 1 | -3/+3 | |
2010-05-10 | gatchat: implement g_at_chat_get_io() | Kristen Carlson Accardi | 2 | -0/+10 | |
2010-05-10 | gsmdial: use g_at_chat_suspend | Kristen Carlson Accardi | 1 | -4/+4 | |
2010-05-10 | ppp: transition to dead when lcp finished | Kristen Carlson Accardi | 1 | -1/+4 | |
Transition to DEAD when lcp is finished and ignore any io disconnects if we are already dead. | |||||
2010-05-10 | Fix: Don't remove wrong atoms | Andrzej Zaborowski | 1 | -3/+6 | |
When the state goes from INSERTED to NOT PRESENT and we have not advanced past the SIM PIN entry, we remove the pre_sim atoms. Similarly, if we advanced past the SIM PIN stage and subsequently removed the SIM, the pre_sim atom list should not be tampered with. | |||||
2010-05-10 | Fix check data device before register the modem | Zhenhua Zhang | 1 | -2/+3 | |
To avoid the race condition that modem is registered before we retrieve the data device property. | |||||
2010-05-04 | add vid/pid for Dell 5541 and 5542 | Torgny Johansson | 1 | -0/+4 | |
2010-04-30 | atmodem: Port gprs-context to new PPP api | Denis Kenzior | 1 | -12/+8 | |
2010-04-30 | gsmdial: Port to new PPP api | Denis Kenzior | 1 | -9/+3 | |
2010-04-30 | ppp: Refactor connect / disconnect callbacks | Denis Kenzior | 2 | -19/+33 | |
Right now it is very hard to figure out whether we should be calling the connect callback or the disconnect callback. So refactor as follows: - Connect callback is only called once the net is actually up - Disconnect callback is called once ppp is down, with a reason for why it is so. | |||||
2010-04-30 | ppp: get rid of ppp_enter_phase | Denis Kenzior | 4 | -57/+85 | |
This function simply didn't have the context of why the phase was being entered. Instead have each protocol notify GAtPPP as to what is happening. We already had this more or less for IPCP and AUTH events, this just now formalizes it for LCP as well. | |||||
2010-04-30 | ppp: Add _from_io constructor | Denis Kenzior | 2 | -8/+34 | |
2010-04-29 | ppp: fix return of drop_packet for NETWORK phase | Kristen Carlson Accardi | 1 | -1/+1 | |
2010-04-29 | gathdlc: Add from_io constructor | Denis Kenzior | 2 | -8/+20 | |
2010-04-30 | Fix parent path introspection data invalidation for multiple levels | Johan Hedberg | 1 | -1/+3 | |
In the case that parent path data needs to be invalidated we shouldn't stop at the immediate parent if it doesn't have our own handler registered but should continue upwards in the tree until we reach root or our own handler. | |||||
2010-04-29 | Fix memory leak in g_dbus_register_interface | Johan Hedberg | 1 | -1/+3 | |
2010-04-29 | ppp: silently drop invalid packets | Kristen Carlson Accardi | 1 | -8/+28 | |
2010-04-29 | ppp: transition to dead when read io destroyed | Kristen Carlson Accardi | 2 | -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-28 | ppp: Hang set_recording off the GAtPPP object | Denis Kenzior | 3 | -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-28 | Add unit test for get inkey parser | Yang Gu | 1 | -0/+1040 | |
2010-04-28 | ppp: Re-add capability to detect io down events | Denis Kenzior | 1 | -0/+9 | |
2010-04-28 | gathdlc: Add accessor for GAtIO | Denis Kenzior | 3 | -0/+13 | |
2010-04-28 | gathdlc: Port GAtHDLC to use GAtIO | Denis Kenzior | 1 | -129/+24 | |
2010-04-28 | ppp: Don't crash if the interface wasn't created | Denis Kenzior | 1 | -0/+4 | |
2010-04-28 | ppp: Accept 1500 byte MTUs | Denis Kenzior | 1 | -1/+1 | |
2010-04-28 | gsmdial: Use set recording on the HDLC object | Denis Kenzior | 1 | -1/+1 | |
2010-04-28 | ppp: Add getter for HDLC object | Denis Kenzior | 2 | -0/+11 | |