Browse Source

TNC: Fix EAP-TNC fragmentation of the last message

62477841a18233586e352d7b901addf18abc1d8a tried to address fragmentation
issues, but it did not address the case where the final EAP-TNC
message gets fragmented. Move the state update to the correct place
to address this case, too.
Jouni Malinen 15 years ago
parent
commit
11804a4ebc
1 changed files with 5 additions and 6 deletions
  1. 5 6
      src/eap_server/eap_server_tnc.c

+ 5 - 6
src/eap_server/eap_server_tnc.c

@@ -229,6 +229,10 @@ static struct wpabuf * eap_tnc_build_msg(struct eap_tnc_data *data, u8 id)
 		wpabuf_free(data->out_buf);
 		data->out_buf = NULL;
 		data->out_used = 0;
+		if (data->was_fail)
+			data->state = FAIL;
+		else if (data->was_done)
+			data->state = DONE;
 	} else {
 		wpa_printf(MSG_DEBUG, "EAP-TNC: Sending out %lu bytes "
 			   "(%lu more to send)", (unsigned long) send_len,
@@ -467,12 +471,7 @@ static void eap_tnc_process(struct eap_sm *sm, void *priv,
 			return;
 		}
 		wpa_printf(MSG_DEBUG, "EAP-TNC: Fragment acknowledged");
-		if (data->was_fail)
-			data->state = FAIL;
-		else if (data->was_done)
-			data->state = DONE;
-		else
-			data->state = CONTINUE;
+		data->state = CONTINUE;
 		return;
 	}