Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-03-26 | Add support for NBNS server options | Marcel Holtmann | 1 | -0/+12 | |
2010-03-26 | ppp: handle Config-Reject | Kristen Carlson Accardi | 1 | -11/+38 | |
if our peer sends us a Config-Reject packet, we must delete that config item and not request that it be negotiated when we send our next Config-Request. | |||||
2010-03-26 | ppp: use common code to get options from pppcp packet data | Kristen Carlson Accardi | 1 | -31/+40 | |
2010-03-26 | ppp: send Protocol-Reject | Kristen Carlson Accardi | 5 | -10/+69 | |
change ppp_decode to store the length of the decoded frame, so that if we have a packet with a protocol we don't understand, we can send Protocol-Reject packets. Modify ppp_cp code to add support for sending Protocol-Reject packet. | |||||
2010-03-26 | ppp: comment fix | Kristen Carlson Accardi | 1 | -0/+8 | |
Put some additional clarification in comment for receiving Code-Reject and Protocol-Reject packets. | |||||
2010-03-26 | ppp: fix segfault in pppcp_send_code_reject() | Kristen Carlson Accardi | 1 | -3/+6 | |
fix memory corruption caused by misplaced paren when memcpying rejected packet data into Code-Reject packet. | |||||
2010-03-25 | Fix: The MCC / MNC Properties are actually strings | Denis Kenzior | 2 | -4/+4 | |
2010-03-25 | ppp: change debug output to include control protocol prefix | Kristen Carlson Accardi | 4 | -11/+35 | |
2010-03-25 | Fix: No need to malloc memory for this | Denis Kenzior | 1 | -1/+1 | |
2010-03-25 | Add parser for help request objects | Yang Gu | 1 | -0/+10 | |
2010-03-25 | Refactor: Use common bool to implement imm resp | Yang Gu | 1 | -12/+2 | |
2010-03-25 | Add parser for common bool object | Yang Gu | 1 | -0/+17 | |
2010-03-25 | Add parser for imei objects | Yang Gu | 1 | -0/+43 | |
2010-03-25 | Add parser for location information objects | Yang Gu | 2 | -0/+47 | |
2010-03-25 | Make the function to parse mcc and mnc public | Yang Gu | 2 | -3/+4 | |
2010-03-25 | Rename: stk data object enum names | Yang Gu | 1 | -4/+4 | |
Be more consistent | |||||
2010-03-25 | Update tests to new netreg API | Denis Kenzior | 1 | -3/+3 | |
2010-03-25 | Refactor: Rename netreg Operator property to Name | Denis Kenzior | 2 | -7/+7 | |
2010-03-25 | Update ISI radio settings driver to the new API | Denis Kenzior | 1 | -4/+4 | |
2010-03-25 | Refactor: Rename radio setting type names | Denis Kenzior | 3 | -23/+23 | |
2010-03-25 | Rename AvailableOperators to Operators | Denis Kenzior | 6 | -7/+7 | |
2010-03-25 | Refactor: Simplify Technology values | Denis Kenzior | 2 | -16/+12 | |
Applications don't really understand our current values very well and would need to look up the spec. Instead we change to much more commonly accepted terms. | |||||
2010-03-25 | Refactor: Remove MobileNetworkCodeLength property | Denis Kenzior | 2 | -8/+50 | |
Replaced by MNC/MCC properties which is more intuitive for use by external applications. | |||||
2010-03-25 | Fix some small copy-and-paste typos | Marcel Holtmann | 1 | -3/+3 | |
2010-03-25 | Check network status to handle auto-registration | Marcel Holtmann | 1 | -13/+43 | |
2010-03-25 | Check modem mode before tyring to change it | Marcel Holtmann | 1 | -1/+27 | |
2010-03-25 | gsmdial: shutdown ppp link if we have one | Kristen Carlson Accardi | 1 | -1/+3 | |
If we have created a ppp link, shut it down when the signal handler is called. | |||||
2010-03-25 | separate memory cleanup from PPP shutdown | Kristen Carlson Accardi | 2 | -19/+29 | |
don't free memory at PPP shutdown, because we need to be able to send terminate traffic. Free memory when we have reached the PPP_DEAD phase instead. | |||||
2010-03-25 | add tracing for PPP terminate path | Kristen Carlson Accardi | 1 | -0/+10 | |
Insert some calls to pppcp_trace() for future debugging needs. | |||||
2010-03-25 | remove unneeded debug statement | Kristen Carlson Accardi | 1 | -3/+1 | |
cleanup old debug print statement | |||||
2010-03-24 | use separate timers for PPP config and terminate | Kristen Carlson Accardi | 2 | -53/+63 | |
Prevent conflicts between config timer information and terminate timer information by providing a new data structure which keeps timer information for config and terminate requests separate. | |||||
2010-03-24 | switch to g_timeout_add_seconds() | Kristen Carlson Accardi | 1 | -2/+2 | |
we don't care that much about the exactness of our timer, so use the more power efficient call. | |||||
2010-03-24 | Fix: Make CONNECT <baud> responses work | Denis Kenzior | 1 | -1/+1 | |
2010-03-24 | Refactor: Simplify parsing logic | Denis Kenzior | 1 | -14/+1 | |
It isn't actually necessary to check the basic command prefixes, if the extended prefix doesn't match we try to parse it like a basic command. That one does the same exact check anyway. If that fails, then this is not a recognized command line anyway. | |||||
2010-03-24 | Refactor basic command parsing | Denis Kenzior | 1 | -59/+46 | |
Make more bullet proof and efficient | |||||
2010-03-24 | Fix: Use SO_REUSEADDR in test_server | Denis Kenzior | 1 | -0/+3 | |
2010-03-24 | Style: foo[0] is preferable to *foo | Denis Kenzior | 1 | -2/+2 | |
2010-03-24 | Fix: Be more paranoid in basic command parsing | Denis Kenzior | 1 | -6/+21 | |
2010-03-24 | Add basic command parsing | Zhenhua Zhang | 1 | -1/+111 | |
2010-03-24 | Style: No point to write a function to wrap g_free | Denis Kenzior | 1 | -10/+4 | |
Using casting magic works well enough, and more consistent with the rest of the library. | |||||
2010-03-24 | Add enum for cdma sms tpdu data objects | Yang Gu | 1 | -0/+1 | |
2010-03-24 | Fix enum for more time proactive command | Yang Gu | 1 | -2/+3 | |
2010-03-24 | fix memory leak in ppp_auth | Kristen Carlson Accardi | 1 | -0/+1 | |
Free packet after calling ppp_transmit() | |||||
2010-03-24 | fix memory leaks after ppp_transmit | Kristen Carlson Accardi | 1 | -9/+27 | |
Free packets in ppp_cp after calling ppp_transmit() | |||||
2010-03-24 | fix memory leaks in option handling | Kristen Carlson Accardi | 1 | -1/+14 | |
free the data as well as the link when deleting options lists. | |||||
2010-03-24 | Release 0.20 | Marcel Holtmann | 2 | -1/+9 | |
2010-03-23 | Fix: Handle broken modems that returns empty COPS | Denis Kenzior | 1 | -0/+20 | |
2010-03-23 | Move netreg interface definitions to dbus.h | Denis Kenzior | 2 | -60/+59 | |
2010-03-23 | Style: Fixup some style issues | Denis Kenzior | 1 | -11/+28 | |
- Large if statements should be handled as switchcase - Avoid initialization of variables, even if code needs to be rearranged | |||||
2010-03-23 | Add parser for file list objects | Yang Gu | 2 | -0/+99 | |