Browse Source

LibC: Add IN6_IS_ADDR_MULTICAST

Tim Schumacher 3 years ago
parent
commit
defe7b4ecc
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Userland/Libraries/LibC/netinet/in.h

+ 4 - 0
Userland/Libraries/LibC/netinet/in.h

@@ -58,4 +58,8 @@ static inline uint32_t ntohl(uint32_t value)
 #define IN6_IS_ADDR_LINKLOCAL(addr) \
     (((addr)->s6_addr[0] == 0xfe) && (((addr)->s6_addr[1] & 0xc0) == 0x80))
 
+// RFC# 2373 - 2.7 Multicast Addresses
+#define IN6_IS_ADDR_MULTICAST(addr) \
+    ((addr)->s6_addr[0] == 0xff)
+
 __END_DECLS