On Sonntag, 4. März 2018 15:04:08 CET Linus Lüssing wrote:
+static bool batadv_mcast_addr_is_ipv4(const u8 *addr) +{
const unsigned char prefix[] = {0x01, 0x00, 0x5E};
This should most likely be
static const u8 prefix[] = {0x01, 0x00, 0x5E};
[...]
- */
+static bool batadv_mcast_addr_is_ipv6(const u8 *addr) +{
const unsigned char prefix[] = {0x33, 0x33};
This should most likely be
static const u8 prefix[] = {0x33, 0x33};
Kind regards, Sven