Skip to content

Commit

Permalink
Mgmt LQI req: parser list only those in current Ext PANID
Browse files Browse the repository at this point in the history
  • Loading branch information
tcharp38 committed Oct 3, 2024
1 parent f00d6fa commit c0384f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/class/AbeilleParser.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -2344,7 +2344,7 @@ function decode8002_MgmtLqiRsp($dest, $srcAddr, $pl) {
'srcAddr' => $srcAddr,
'status' => $status,
'tableEntries' => $nTableEntries,
'tableListCount' => $nTableListCount,
'tableListCount' => 0, // Returning only nb in the current extended PAN ID
'startIdx' => $startIdx,
'nList' => []
);
Expand Down Expand Up @@ -2395,6 +2395,7 @@ function decode8002_MgmtLqiRsp($dest, $srcAddr, $pl) {
"lqi" => substr($pl, $j + 42, 2),
);
$nList[] = $N; // Add to neighbors list
$toLqiCollector['tableListCount']++;
parserLog2('debug', $srcAddr, ' NExtPANId='.$N['extPANId']
.', NExtAddr='.$N['extAddr']
.', NAddr='.$N['addr']
Expand Down
1 change: 1 addition & 0 deletions docs/fr_FR/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Amélioration interne: Description clusters 0000 & 0001 pour profile ID 0000.
- Amélioration: Page infos clefs: Ajout 'Extended PAN ID'.
- Correction interne: AbeilleCmdQueue.
- Correction interne: Parser: Ne prend en compte que voisins dans reseau courant (Mgmt_lqi_rsp).

## 240920-BETA-3

Expand Down

0 comments on commit c0384f4

Please sign in to comment.