Skip to content

Commit c013bc7

Browse files
author
Mika Leppänen
committed
Added traces to EAPOL TX failure
1 parent c29ee94 commit c013bc7

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
### Changes
99
* Nanostack now indicates connection down on RPL local repair start
1010
* Added trace for mbed TLS errors
11+
* Added traces to EAPOL TX failure
1112

1213
### Bugfix
1314
* Prevent sending broadcast frames on unicast channel

source/6LoWPAN/ws/ws_eapol_pdu.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,9 @@ static void ws_eapol_pdu_mpx_data_confirm(const mpx_api_t *api, const struct mcp
278278
status = EAPOL_PDU_TX_OK;
279279
} else if (data->status == MLME_TX_NO_ACK) {
280280
status = EAPOL_PDU_TX_ERR_TX_NO_ACK;
281+
tr_error("EAPOL TX err no ack");
282+
} else {
283+
tr_error("EAPOL TX err");
281284
}
282285
msdu->tx_status(eapol_pdu_data->interface_ptr, status, msdu->tx_identifier);
283286
}

0 commit comments

Comments
 (0)