Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-04-02 | Fix tabs vs. whitespace coding style violation | Marcel Holtmann | 1 | -1/+1 | |
2010-04-02 | Add more missing break statements | Marcel Holtmann | 3 | -3/+6 | |
2010-04-02 | ppp: fix missing breaks in switch statements | Kristen Carlson Accardi | 1 | -5/+4 | |
2010-04-02 | Add missing break or fall through comments to switch statements | Marcel Holtmann | 1 | -1/+22 | |
2010-04-02 | Always reset option_rval for every option | Marcel Holtmann | 1 | -2/+8 | |
2010-04-02 | Add missing arpa/inet.h includes | Marcel Holtmann | 1 | -0/+1 | |
2010-04-02 | ppp: use queue to transmit | Kristen Carlson Accardi | 3 | -44/+94 | |
Since we are using non buffered I/O, use a queue to transmit when buffer space is available. | |||||
2010-04-02 | Split out ipcp protocol into ppp_ipcp.c | Denis Kenzior | 5 | -221/+256 | |
2010-04-02 | ppp: fix event generation on close | Kristen Carlson Accardi | 3 | -17/+5 | |
Prevents too early transition to PPP_DEAD | |||||
2010-04-02 | Fix: Make the C-APDU logic more readable | Denis Kenzior | 1 | -7/+11 | |
2010-04-02 | Style: Multiline comments | Denis Kenzior | 1 | -3/+6 | |
2010-04-02 | Fix: Tweak the language parser | Denis Kenzior | 1 | -2/+9 | |
2010-04-02 | Fix: Remove erroneous comment | Denis Kenzior | 1 | -1/+0 | |
2010-04-02 | Fix: AT Commands are probably just text | Denis Kenzior | 1 | -3/+3 | |
2010-04-02 | Fix: Trivial indentation issues | Denis Kenzior | 1 | -16/+16 | |
2010-04-02 | Add parser for browser identity objects | Yang Gu | 2 | -0/+18 | |
2010-04-02 | Add parser for language objects | Yang Gu | 1 | -0/+21 | |
2010-04-02 | Add parser for dtmf string objects | Yang Gu | 1 | -0/+24 | |
2010-04-02 | Add parser for bc repeat indicator objects | Yang Gu | 1 | -0/+10 | |
2010-04-02 | Add parser for at response objects | Yang Gu | 1 | -0/+10 | |
2010-04-02 | Add parser for at command objects | Yang Gu | 1 | -0/+32 | |
2010-04-02 | Add parser for date-time and time zone objects | Yang Gu | 1 | -0/+19 | |
2010-04-02 | Make function decode_scts public | Yang Gu | 2 | -6/+9 | |
2010-04-02 | Add parser for timer value objects | Yang Gu | 2 | -0/+27 | |
2010-04-02 | Refactor: Break out semi-octet decoder | Yang Gu | 2 | -6/+13 | |
Refactor decode_scts to use this function | |||||
2010-04-02 | Add parser for timer identifier objects | Yang Gu | 1 | -0/+11 | |
2010-04-02 | Add parser for r-apdu objects | Yang Gu | 2 | -0/+36 | |
2010-04-02 | Add parser for c-apdu objects | Yang Gu | 2 | -0/+59 | |
2010-04-02 | Add parser for card atr objects | Yang Gu | 2 | -0/+29 | |
2010-04-02 | Add parser for card reader status objects | Yang Gu | 1 | -0/+11 | |
2010-04-02 | Fix: Regression in PIN validity checking | Denis Kenzior | 1 | -1/+1 | |
2010-04-01 | Remove PPP CP event_queue handling and process events directly | Marcel Holtmann | 2 | -55/+4 | |
2010-04-01 | Fix: Stop infinite attempts to register | Denis Kenzior | 1 | -8/+11 | |
Sometimes if the modem firmware is particularly nutty we will see frequent cell-reselections at startup, resulting in us attempting to register multiple times. Try to stop this behavior by keeping track of what state we're in and hoping the hardware is at least somewhat sane. | |||||
2010-04-01 | Add support for Option iCon 452 | Denis Kenzior | 1 | -0/+1 | |
2010-04-01 | Remove obfuscation for some of the event handling | Marcel Holtmann | 2 | -42/+13 | |
2010-04-01 | Move functions from ppp.c into gatppp.c | Marcel Holtmann | 4 | -539/+503 | |
2010-04-01 | Remove PPP event_queue handling and process events directly | Marcel Holtmann | 3 | -44/+27 | |
2010-04-01 | Check FCS while unstuffing the byte stream | Marcel Holtmann | 1 | -10/+11 | |
2010-04-01 | Remove PPP recv_queue handling and process frames directly | Marcel Holtmann | 3 | -31/+22 | |
2010-04-01 | Remove usage of AT+CGACT for now | Marcel Holtmann | 1 | -22/+5 | |
2010-04-01 | Fix order of PPP frame recording and processing | Marcel Holtmann | 1 | -1/+1 | |
2010-04-01 | Add support for recording PPP sessions in pppdump format | Marcel Holtmann | 5 | -5/+62 | |
2010-04-01 | Implement g_at_ppp_set_debug support | Marcel Holtmann | 5 | -15/+34 | |
2010-04-01 | Add some debugging information to PPP authentication handling | Marcel Holtmann | 1 | -3/+6 | |
2010-04-01 | Remove useless pppcp_protocol_data structure | Marcel Holtmann | 5 | -40/+15 | |
2010-04-01 | Remove forward declarations in PPP network handling | Marcel Holtmann | 1 | -81/+75 | |
2010-04-01 | Add debugging for PPP LCP and IPCP options | Marcel Holtmann | 4 | -8/+73 | |
2010-03-31 | Use ppp%d as PPP interface name instead of tun%d | Marcel Holtmann | 1 | -0/+1 | |
2010-03-31 | Initial implementation of the PPP gprs context | Denis Kenzior | 1 | -88/+115 | |
2010-03-31 | Fix: Introduce PPP data state | Denis Kenzior | 1 | -0/+13 | |
Some modems send PPP data introspersed along with the CONNECT final response. Fixup the parser so we can still detect the final response. |