1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

net_help: remove IPV6_CMP_ADDR macro

Used nowhere; alternative: ipv6_addr_is_equal(), since other use-cases
(is an IPv6 address smaller than the other) are not applicable anyway.
This commit is contained in:
Martine Lenders 2014-11-17 09:27:56 +01:00
parent 53eaa4feb8
commit 4d82c2c646

View File

@ -65,8 +65,6 @@ static inline uint64_t NTOHLL(uint64_t a)
return byteorder_ntohll(*(network_uint64_t *) &a);
}
#define CMP_IPV6_ADDR(a, b) (memcmp(a, b, 16))
uint16_t csum(uint16_t sum, uint8_t *buf, uint16_t len);
#ifdef __cplusplus