multicast.c (a943e8bc058977663ba1e42389d4f5643cf2ae9e) | multicast.c (fec149f5d3234c037ec761d1db4cc8c0550e9964) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* Copyright (C) 2014-2017 B.A.T.M.A.N. contributors: 3 * 4 * Linus Lüssing 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of version 2 of the GNU General Public 8 * License as published by the Free Software Foundation. --- 41 unchanged lines hidden (view full) --- 50#include <linux/stddef.h> 51#include <linux/string.h> 52#include <linux/types.h> 53#include <linux/workqueue.h> 54#include <net/addrconf.h> 55#include <net/if_inet6.h> 56#include <net/ip.h> 57#include <net/ipv6.h> | 1// SPDX-License-Identifier: GPL-2.0 2/* Copyright (C) 2014-2017 B.A.T.M.A.N. contributors: 3 * 4 * Linus Lüssing 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of version 2 of the GNU General Public 8 * License as published by the Free Software Foundation. --- 41 unchanged lines hidden (view full) --- 50#include <linux/stddef.h> 51#include <linux/string.h> 52#include <linux/types.h> 53#include <linux/workqueue.h> 54#include <net/addrconf.h> 55#include <net/if_inet6.h> 56#include <net/ip.h> 57#include <net/ipv6.h> |
58#include <uapi/linux/batadv_packet.h> |
|
58 59#include "hard-interface.h" 60#include "hash.h" 61#include "log.h" | 59 60#include "hard-interface.h" 61#include "hash.h" 62#include "log.h" |
62#include "packet.h" | |
63#include "translation-table.h" 64#include "tvlv.h" 65 66static void batadv_mcast_mla_update(struct work_struct *work); 67 68/** 69 * batadv_mcast_start_timer() - schedule the multicast periodic worker 70 * @bat_priv: the bat priv with all the soft interface information --- 1252 unchanged lines hidden --- | 63#include "translation-table.h" 64#include "tvlv.h" 65 66static void batadv_mcast_mla_update(struct work_struct *work); 67 68/** 69 * batadv_mcast_start_timer() - schedule the multicast periodic worker 70 * @bat_priv: the bat priv with all the soft interface information --- 1252 unchanged lines hidden --- |