瀏覽代碼

[dfs] add IN6_IS_ADDR_MULTICAST support
in components/dfs/filesystems/net/netinet/in.h, add IN6_IS_ADDR_MULTICAST support

MurphyZhao 7 年之前
父節點
當前提交
938fa1170d
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      components/dfs/filesystems/net/netinet/in.h

+ 4 - 0
components/dfs/filesystems/net/netinet/in.h

@@ -27,4 +27,8 @@
 
 #include <lwip/sockets.h>
 
+#ifndef IN6_IS_ADDR_MULTICAST
+#define IN6_IS_ADDR_MULTICAST(a) (((uint8_t *) (a))[0] == 0xff)
+#endif
+
 #endif