Skip to content

Commit e3a513f

Browse files
authored
Merge pull request #425 from Telecominfraproject/WIFI-15016_fix_schema_sync
WIFI 15016 fix: Sync schema.
2 parents 862dab3 + b151239 commit e3a513f

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

src/framework/ConfigurationValidator.cpp

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,8 @@ static std::string DefaultAPSchema = R"foo(
276276
"sae-mixed",
277277
"wpa3",
278278
"wpa3-192",
279-
"wpa3-mixed"
279+
"wpa3-mixed",
280+
"mpsk-radius"
280281
],
281282
"examples": [
282283
"psk2"
@@ -2419,6 +2420,11 @@ static std::string DefaultAPSchema = R"foo(
24192420
"encryption": {
24202421
"$ref": "#/$defs/interface.ssid.encryption"
24212422
},
2423+
"enhanced-mpsk": {
2424+
"description": "Optionally disable MPSK",
2425+
"type": "boolean",
2426+
"default": true
2427+
},
24222428
"multi-psk": {
24232429
"anyOf": [
24242430
{
@@ -4450,7 +4456,8 @@ static std::string DefaultSWITCHSchema = R"foo(
44504456
"sae-mixed",
44514457
"wpa3",
44524458
"wpa3-192",
4453-
"wpa3-mixed"
4459+
"wpa3-mixed",
4460+
"mpsk-radius"
44544461
],
44554462
"examples": [
44564463
"psk2"
@@ -6633,6 +6640,11 @@ static std::string DefaultSWITCHSchema = R"foo(
66336640
"encryption": {
66346641
"$ref": "#/$defs/interface.ssid.encryption"
66356642
},
6643+
"enhanced-mpsk": {
6644+
"description": "Optionally disable MPSK",
6645+
"type": "boolean",
6646+
"default": true
6647+
},
66366648
"multi-psk": {
66376649
"anyOf": [
66386650
{

0 commit comments

Comments
 (0)