X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=resource%2Fcsdk%2Fstack%2Finclude%2Finternal%2Focresourcehandler.h;h=606350fe9b47348886f46cfd0830f6b31f3f2048;hb=refs%2Ftags%2Fupstream%2F1.0.0;hp=432b2f7f525f8a34fc3850282863c30c2b7bde39;hpb=8c01dff2c5bc5496f7dc1632c498943ec6ecb015;p=platform%2Fupstream%2Fiotivity.git diff --git a/resource/csdk/stack/include/internal/ocresourcehandler.h b/resource/csdk/stack/include/internal/ocresourcehandler.h index 432b2f7..606350f 100644 --- a/resource/csdk/stack/include/internal/ocresourcehandler.h +++ b/resource/csdk/stack/include/internal/ocresourcehandler.h @@ -45,18 +45,35 @@ #define OC_RESOURCE_SECURE 1 /** - * OIC Virtual resources supported by every OIC device. + * OIC Virtual resources supported by every OIC device. */ typedef enum { + /** unknown URI.*/ OC_UNKNOWN_URI =0, - OC_WELL_KNOWN_URI, ///< "/oic/res" - OC_DEVICE_URI, ///< "/oic/d" - OC_PLATFORM_URI, ///< "/oic/p" - OC_RESOURCE_TYPES_URI, ///< "/oic/res/types/d" -#ifdef WITH_PRESENCE - OC_PRESENCE, ///< "/oic/ad" + + /** "/oic/res".*/ + OC_WELL_KNOWN_URI, + + /** "/oic/d" .*/ + OC_DEVICE_URI, + + /** "/oic/p" .*/ + OC_PLATFORM_URI, + + /** "/oic/res/d/type" .*/ + OC_RESOURCE_TYPES_URI, +#ifdef ROUTING_GATEWAY + /** "/oic/gateway" .*/ + OC_GATEWAY_URI, #endif + #ifdef WITH_PRESENCE + /** "/oic/ad" .*/ + OC_PRESENCE, + #endif + + /** Max items in the list */ + OC_MAX_VIRTUAL_RESOURCES //