| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 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 | 1 | -0/+42 | |
| 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 | ppp: change debug output to include control protocol prefix | Kristen Carlson Accardi | 1 | -6/+6 | |
| 2010-03-25 | Fix some small copy-and-paste typos | Marcel Holtmann | 1 | -3/+3 | |
| 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-24 | use separate timers for PPP config and terminate | Kristen Carlson Accardi | 1 | -48/+53 | |
| 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 | 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 | 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-22 | Remove pointless optimization attempt with g_list_length() | Marcel Holtmann | 1 | -8/+1 | |
| 2010-03-22 | Unnest some more functions in PPP CP implementation | Marcel Holtmann | 1 | -19/+20 | |
| 2010-03-22 | Some additional whitespace cleanup for PPP code | Marcel Holtmann | 1 | -3/+6 | |
| 2010-03-22 | Fix the broken PPP CP debug trace function | Marcel Holtmann | 1 | -5/+6 | |
| 2010-03-22 | Remove some heavy nesting that is not needed at all | Marcel Holtmann | 1 | -15/+15 | |
| 2010-03-22 | Fix another pointer casting issue on 32-bit systems | Marcel Holtmann | 1 | -9/+11 | |
| 2010-03-22 | Generic PPP control protocol support | Kristen Carlson Accardi | 1 | -0/+1503 | |
| Implement a generic protocol that can be shared by both the LCP and the NCP implementation. | |||||