1/* SPDX-License-Identifier: GPL-2.0-or-later */
2#ifndef _LINUX_IGMP_INTERNAL_H
3#define _LINUX_IGMP_INTERNAL_H
4
5struct inet_fill_args {
6 u32 portid;
7 u32 seq;
8 int event;
9 unsigned int flags;
10 int netnsid;
11 int ifindex;
12};
13
14int inet_fill_ifmcaddr(struct sk_buff *skb, struct net_device *dev,
15 const struct ip_mc_list *im,
16 struct inet_fill_args *args);
17#endif
18