mirror of
https://github.com/espressif/openthread.git
synced 2026-06-05 21:14:49 +00:00
[mac] remove beacons payload (#7472)
Thread Specification v1.2.1 removes support for Thread Beacons payload.
This commit is contained in:
@@ -711,11 +711,6 @@ void Dataset::OutputSecurityPolicy(const otSecurityPolicy &aSecurityPolicy)
|
||||
OutputFormat("c");
|
||||
}
|
||||
|
||||
if (aSecurityPolicy.mBeaconsEnabled)
|
||||
{
|
||||
OutputFormat("b");
|
||||
}
|
||||
|
||||
if (aSecurityPolicy.mCommercialCommissioningEnabled)
|
||||
{
|
||||
OutputFormat("C");
|
||||
@@ -771,10 +766,6 @@ otError Dataset::ParseSecurityPolicy(otSecurityPolicy &aSecurityPolicy, Arg *&aA
|
||||
policy.mExternalCommissioningEnabled = true;
|
||||
break;
|
||||
|
||||
case 'b':
|
||||
policy.mBeaconsEnabled = true;
|
||||
break;
|
||||
|
||||
case 'C':
|
||||
policy.mCommercialCommissioningEnabled = true;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user