multicast.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /* Copyright (C) 2014 B.A.T.M.A.N. contributors:
  2. *
  3. * Linus Lüssing
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of version 2 of the GNU General Public
  7. * License as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef _NET_BATMAN_ADV_MULTICAST_H_
  18. #define _NET_BATMAN_ADV_MULTICAST_H_
  19. /**
  20. * batadv_forw_mode - the way a packet should be forwarded as
  21. * @BATADV_FORW_ALL: forward the packet to all nodes (currently via classic
  22. * flooding)
  23. * @BATADV_FORW_SINGLE: forward the packet to a single node (currently via the
  24. * BATMAN unicast routing protocol)
  25. * @BATADV_FORW_NONE: don't forward, drop it
  26. */
  27. enum batadv_forw_mode {
  28. BATADV_FORW_ALL,
  29. BATADV_FORW_SINGLE,
  30. BATADV_FORW_NONE,
  31. };
  32. #ifdef CONFIG_BATMAN_ADV_MCAST
  33. void batadv_mcast_mla_update(struct batadv_priv *bat_priv);
  34. enum batadv_forw_mode
  35. batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb,
  36. struct batadv_orig_node **mcast_single_orig);
  37. void batadv_mcast_init(struct batadv_priv *bat_priv);
  38. void batadv_mcast_free(struct batadv_priv *bat_priv);
  39. void batadv_mcast_purge_orig(struct batadv_orig_node *orig_node);
  40. #else
  41. static inline void batadv_mcast_mla_update(struct batadv_priv *bat_priv)
  42. {
  43. return;
  44. }
  45. static inline enum batadv_forw_mode
  46. batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb,
  47. struct batadv_orig_node **mcast_single_orig)
  48. {
  49. return BATADV_FORW_ALL;
  50. }
  51. static inline int batadv_mcast_init(struct batadv_priv *bat_priv)
  52. {
  53. return 0;
  54. }
  55. static inline void batadv_mcast_free(struct batadv_priv *bat_priv)
  56. {
  57. return;
  58. }
  59. static inline void batadv_mcast_purge_orig(struct batadv_orig_node *orig_node)
  60. {
  61. return;
  62. }
  63. #endif /* CONFIG_BATMAN_ADV_MCAST */
  64. #endif /* _NET_BATMAN_ADV_MULTICAST_H_ */