This matches the OCResourceProperty value OC_NONSECURE
from octypes.h.
Bug: https://jira.iotivity.org/browse/IOT-2538
Change-Id: I9e536dbb4c3db5c8be9f219a8b95df1176859138
Signed-off-by: George Nash <george.nash@intel.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/21605
Tested-by: jenkins-iotivity <jenkins@iotivity.org>
Reviewed-by: Larry Sachs <larry.j.sachs@intel.com>
Reviewed-by: Rick Bell <richard.s.bell@intel.com>
* if discovery request contains an explicit querystring.
* Ex: GET /oic/res?rt=oic.sec.acl
*/
- EXPLICIT_DISCOVERABLE(1 << 5);
+ EXPLICIT_DISCOVERABLE(1 << 5),
+ /**
+ * When this bit is set, the resource supports access via non-secure endpoints.
+ */
+ NONSECURE(1 << 6);
private int value;