mirror of
https://github.com/espressif/openthread.git
synced 2026-08-03 17:37:46 +00:00
[router-table] fix allocated router ids bit-vector size (#3534)
This commit is contained in:
committed by
Jonathan Hui
parent
144270105d
commit
f9d757a161
@@ -342,7 +342,7 @@ private:
|
||||
}
|
||||
|
||||
Router mRouters[Mle::kMaxRouters];
|
||||
uint8_t mAllocatedRouterIds[BitVectorBytes(Mle::kMaxRouterId)];
|
||||
uint8_t mAllocatedRouterIds[BitVectorBytes(Mle::kMaxRouterId + 1)];
|
||||
uint8_t mRouterIdReuseDelay[Mle::kMaxRouterId + 1];
|
||||
uint32_t mRouterIdSequenceLastUpdated;
|
||||
uint8_t mRouterIdSequence;
|
||||
|
||||
Reference in New Issue
Block a user