summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristen Carlson Accardi <kristen@linux.intel.com>2010-03-26 18:34:30 -0700
committerMarcel Holtmann <marcel@holtmann.org>2010-03-26 19:19:46 -0700
commitc31bee9fff2d3b07ba9a8385e9a6180c4e06af3e (patch)
tree1c2d359298ada50e52ed2bf6e1050e8b0c50de74
parent8777e778f3654529b610a50d0a0196f67302fe49 (diff)
downloadofono-c31bee9fff2d3b07ba9a8385e9a6180c4e06af3e.tar.bz2
ppp: handle Config-Reject
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.
-rw-r--r--gatchat/ppp_cp.c49
1 files changed, 38 insertions, 11 deletions
diff --git a/gatchat/ppp_cp.c b/gatchat/ppp_cp.c
index d7d70b72..ac1a37d1 100644
--- a/gatchat/ppp_cp.c
+++ b/gatchat/ppp_cp.c
@@ -1363,22 +1363,49 @@ static guint8 pppcp_process_configure_nak(struct pppcp_data *data,
static guint8 pppcp_process_configure_reject(struct pppcp_data *data,
struct pppcp_packet *packet)
{
+ guint len;
+ GList *list;
+ struct ppp_option *rejected_option;
+ guint i = 0;
+
+ len = ntohs(packet->length) - CP_HEADER_SZ;
+
/*
* make sure identifier matches that of last sent configure
* request
*/
- if (packet->identifier == data->config_identifier) {
- /*
- * check to see which options were rejected
- * Rejected options must be a subset of requested
- * options.
- *
- * when a new configure-request is sent, we may
- * not request any of these options be negotiated
- */
- return RCN;
+ if (packet->identifier != data->config_identifier)
+ return 0;
+
+ /*
+ * check to see which options were rejected
+ * Rejected options must be a subset of requested
+ * options.
+ *
+ * when a new configure-request is sent, we may
+ * not request any of these options be negotiated
+ */
+ while (i < len) {
+ rejected_option = extract_ppp_option(&packet->data[i]);
+ if (rejected_option == NULL)
+ break;
+
+ /* skip ahead to the next option */
+ i += rejected_option->length;
+
+ /* find this option in our config options list */
+ list = g_list_find_custom(data->config_options,
+ GUINT_TO_POINTER((guint) rejected_option->type),
+ is_option);
+ if (list) {
+ /* delete this config option */
+ g_free(list->data);
+ data->config_options =
+ g_list_delete_link(data->config_options, list);
+ }
+ g_free(rejected_option);
}
- return 0;
+ return RCN;
}
static guint8 pppcp_process_terminate_request(struct pppcp_data *data,