igmp_internal.h 375 B

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