engage-engine 1.225.90650004 → 1.227.90670003

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3614,6 +3614,8 @@ namespace AppConfigurationObjects
3614
3614
  ENGAGE_IGNORE_COMPILER_UNUSED_WARNING static const char *GROUP_DISCONNECTED_REASON_UNREGISTERED = "Unregistered";
3615
3615
  /** @brief The Rallypoint is not accepting registration for the group at this time **/
3616
3616
  ENGAGE_IGNORE_COMPILER_UNUSED_WARNING static const char *GROUP_DISCONNECTED_REASON_NOT_ALLOWED = "NotAllowed";
3617
+ /** @brief The Rallypoint has denied the registration because the registration is for a security level not allowed on the RP **/
3618
+ ENGAGE_IGNORE_COMPILER_UNUSED_WARNING static const char *GROUP_DISCONNECTED_REASON_SECURITY_CLASSIFICATION_LEVEL_TOO_HIGH = "SecurityClassificationLevelTooHigh";
3617
3619
  /** @brief The Rallypoint has denied the registration for no specific reason **/
3618
3620
  ENGAGE_IGNORE_COMPILER_UNUSED_WARNING static const char *GROUP_DISCONNECTED_REASON_GENERAL_DENIAL = "GeneralDenial";
3619
3621
  /** @} */
@@ -4197,6 +4199,9 @@ namespace AppConfigurationObjects
4197
4199
  /** @brief List of specializer IDs that the local node has an affinity for/member of */
4198
4200
  std::vector<uint16_t> specializerAffinities;
4199
4201
 
4202
+ /** @brief [Optional, Default: 0] The security classification level of the group. */
4203
+ uint32_t securityLevel;
4204
+
4200
4205
  Group()
4201
4206
  {
4202
4207
  clear();
@@ -4262,6 +4267,8 @@ namespace AppConfigurationObjects
4262
4267
  rxImpairment.clear();
4263
4268
 
4264
4269
  specializerAffinities.clear();
4270
+
4271
+ securityLevel = 0;
4265
4272
  }
4266
4273
  };
4267
4274
 
@@ -4312,7 +4319,9 @@ namespace AppConfigurationObjects
4312
4319
  TOJSON_IMPL(txImpairment),
4313
4320
  TOJSON_IMPL(rxImpairment),
4314
4321
 
4315
- TOJSON_IMPL(specializerAffinities)
4322
+ TOJSON_IMPL(specializerAffinities),
4323
+
4324
+ TOJSON_IMPL(securityLevel)
4316
4325
  };
4317
4326
 
4318
4327
  // TODO: need a better way to indicate whether rtpProfile is present
@@ -4382,6 +4391,7 @@ namespace AppConfigurationObjects
4382
4391
  getOptional<TransportImpairment>("txImpairment", p.txImpairment, j);
4383
4392
  getOptional<TransportImpairment>("rxImpairment", p.rxImpairment, j);
4384
4393
  getOptional<std::vector<uint16_t>>("specializerAffinities", p.specializerAffinities, j);
4394
+ getOptional<uint32_t>("securityLevel", p.securityLevel, j, 0);
4385
4395
  }
4386
4396
 
4387
4397
 
@@ -7464,6 +7474,9 @@ namespace AppConfigurationObjects
7464
7474
  /** @brief If true, turns off loop detection. */
7465
7475
  bool disableLoopDetection;
7466
7476
 
7477
+ /** @brief [Optional, Default 0] Sets the maximum item security level that can be registered with the RP */
7478
+ uint32_t maxSecurityLevel;
7479
+
7467
7480
  RallypointServer()
7468
7481
  {
7469
7482
  clear();
@@ -7512,6 +7525,7 @@ namespace AppConfigurationObjects
7512
7525
  normalTaskQueueBias = 0;
7513
7526
  enableLeafReflectionReverseSubscription = false;
7514
7527
  disableLoopDetection = false;
7528
+ maxSecurityLevel = 0;
7515
7529
  }
7516
7530
  };
7517
7531
 
@@ -7558,7 +7572,8 @@ namespace AppConfigurationObjects
7558
7572
  TOJSON_IMPL(sysFlags),
7559
7573
  TOJSON_IMPL(normalTaskQueueBias),
7560
7574
  TOJSON_IMPL(enableLeafReflectionReverseSubscription),
7561
- TOJSON_IMPL(disableLoopDetection)
7575
+ TOJSON_IMPL(disableLoopDetection),
7576
+ TOJSON_IMPL(maxSecurityLevel)
7562
7577
  };
7563
7578
  }
7564
7579
  static void from_json(const nlohmann::json& j, RallypointServer& p)
@@ -7605,6 +7620,7 @@ namespace AppConfigurationObjects
7605
7620
  getOptional<uint32_t>("normalTaskQueueBias", p.normalTaskQueueBias, j, 0);
7606
7621
  getOptional<bool>("enableLeafReflectionReverseSubscription", p.enableLeafReflectionReverseSubscription, j, false);
7607
7622
  getOptional<bool>("disableLoopDetection", p.disableLoopDetection, j, false);
7623
+ getOptional<uint32_t>("maxSecurityLevel", p.maxSecurityLevel, j, 0);
7608
7624
  }
7609
7625
 
7610
7626
 
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "engage-engine",
3
- "version": "1.225.90650004",
3
+ "version": "1.227.90670003",
4
4
  "description": "Use Engage to communicate with everyone, everywhere, from any device",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"