Added descriptive comments for several ocstack.h macros
authorWilliam R. Dieter <william.r.dieter@intel.com>
Wed, 22 Apr 2015 19:55:11 +0000 (15:55 -0400)
committerErich Keane <erich.keane@intel.com>
Thu, 23 Apr 2015 17:28:04 +0000 (17:28 +0000)
Change-Id: I7112d28ff03f1fbcfdb171e51524b7ba976fe395
Signed-off-by: William R. Dieter <william.r.dieter@intel.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/812
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Erich Keane <erich.keane@intel.com>
resource/csdk/stack/include/ocstack.h

index 7ade64f..fcea43d 100644 (file)
@@ -35,10 +35,14 @@ extern "C" {
 //TODO: May want to refactor this in upcoming sprints.
 //Don't want to expose to application layer that lower level stack is using CoAP.
 
+/// Authority + URI string to prefix well known queries
 #define OC_WELL_KNOWN_QUERY                  "224.0.1.187:5683/oc/core"
 #define OC_EXPLICIT_DEVICE_DISCOVERY_URI     "224.0.1.187:5683/oc/core/d?rt=core.led"
+/// Multicast address and port string to prefix multicast queries
 #define OC_MULTICAST_PREFIX                  "224.0.1.187:5683"
+/// IP Multicast address to use for multicast requests
 #define OC_MULTICAST_IP                      "224.0.1.187"
+/// IP Multicast port to use for multicast requests
 #define OC_MULTICAST_PORT                    5683
 
 #ifdef WITH_PRESENCE