Skip to content

Commit

Permalink
[joiner] support a new EUI-64 at run time (openthread#11200)
Browse files Browse the repository at this point in the history
The otJoinerStart enables a mechanism for Thread
commissioning. The traditional Thread commissioning process uses
factory assigned EUI-64 of the device to derive the Joiner ID and
identify/filter a joiner (through steering data bloom filter).

But otJoinerStart does not allows users to have a new EUI-64 set
at run time.

On joiner side, when a new EUI-64 value is provided, the
Joiner code uses this new value to derive the Joiner ID and
identify/filter a joiner (through steering data bloom filter).

On commissioner side, users can use this new EUI-64 value.
  • Loading branch information
xavraz authored Jan 29, 2025
1 parent a8632ac commit d31bcee
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/meshcop/joiner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ Error Joiner::Start(const char *aPskd,
}
else
{
SetIdFromIeeeEui64();
SteeringData::CalculateHashBitIndexes(mId, filterIndexes);
}

Expand Down

0 comments on commit d31bcee

Please sign in to comment.