TNC: Fix EAP-TNC fragmentation of the last message
62477841a1
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.
This commit is contained in:
parent
5febb0d272
commit
11804a4ebc
1 changed files with 5 additions and 6 deletions
|
@ -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,11 +471,6 @@ 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;
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue