replace : iotivity -> iotivity-sec
[platform/upstream/iotivity.git] / resource / csdk / connectivity / lib / libcoap-4.1.1 / include / coap / address.h
index c26784c..65c4259 100644 (file)
@@ -135,8 +135,11 @@ _coap_is_mcast_impl(const coap_address_t *a)
     {
         case AF_INET:
         return IN_MULTICAST(a->addr.sin.sin_addr.s_addr);
+/* TODO - Enable this once IPv6 comes in TizenRT */
+#ifndef __TIZENRT__
         case AF_INET6:
         return IN6_IS_ADDR_MULTICAST(&a->addr.sin6.sin6_addr);
+#endif
         default: /* fall through and signal error */
         ;
     }