igmp.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright (c) 2021 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /** @file
  7. * @brief IGMP API
  8. */
  9. #ifndef ZEPHYR_INCLUDE_NET_IGMP_H_
  10. #define ZEPHYR_INCLUDE_NET_IGMP_H_
  11. /**
  12. * @brief IGMP (Internet Group Management Protocol)
  13. * @defgroup igmp IGMP API
  14. * @ingroup networking
  15. * @{
  16. */
  17. #include <zephyr/types.h>
  18. #include <net/net_if.h>
  19. #include <net/net_ip.h>
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /**
  24. * @brief Join a given multicast group.
  25. *
  26. * @param iface Network interface where join message is sent
  27. * @param addr Multicast group to join
  28. *
  29. * @return Return 0 if joining was done, <0 otherwise.
  30. */
  31. #if defined(CONFIG_NET_IPV4_IGMP)
  32. int net_ipv4_igmp_join(struct net_if *iface, const struct in_addr *addr);
  33. #else
  34. #define net_ipv4_igmp_join(iface, addr) -ENOSYS
  35. #endif
  36. /**
  37. * @brief Leave a given multicast group.
  38. *
  39. * @param iface Network interface where leave message is sent
  40. * @param addr Multicast group to leave
  41. *
  42. * @return Return 0 if leaving is done, <0 otherwise.
  43. */
  44. #if defined(CONFIG_NET_IPV4_IGMP)
  45. int net_ipv4_igmp_leave(struct net_if *iface, const struct in_addr *addr);
  46. #else
  47. #define net_ipv4_igmp_leave(iface, addr) -ENOSYS
  48. #endif
  49. #ifdef __cplusplus
  50. }
  51. #endif
  52. /**
  53. * @}
  54. */
  55. #endif /* ZEPHYR_INCLUDE_NET_IGMP_H_ */