multicast.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* Copyright (C) 2014-2016 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. #include "main.h"
  20. struct seq_file;
  21. struct sk_buff;
  22. /**
  23. * enum batadv_forw_mode - the way a packet should be forwarded as
  24. * @BATADV_FORW_ALL: forward the packet to all nodes (currently via classic
  25. * flooding)
  26. * @BATADV_FORW_SINGLE: forward the packet to a single node (currently via the
  27. * BATMAN unicast routing protocol)
  28. * @BATADV_FORW_NONE: don't forward, drop it
  29. */
  30. enum batadv_forw_mode {
  31. BATADV_FORW_ALL,
  32. BATADV_FORW_SINGLE,
  33. BATADV_FORW_NONE,
  34. };
  35. #ifdef CONFIG_BATMAN_ADV_MCAST
  36. void batadv_mcast_mla_update(struct batadv_priv *bat_priv);
  37. enum batadv_forw_mode
  38. batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb,
  39. struct batadv_orig_node **mcast_single_orig);
  40. void batadv_mcast_init(struct batadv_priv *bat_priv);
  41. int batadv_mcast_flags_seq_print_text(struct seq_file *seq, void *offset);
  42. void batadv_mcast_free(struct batadv_priv *bat_priv);
  43. void batadv_mcast_purge_orig(struct batadv_orig_node *orig_node);
  44. #else
  45. static inline void batadv_mcast_mla_update(struct batadv_priv *bat_priv)
  46. {
  47. }
  48. static inline enum batadv_forw_mode
  49. batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb,
  50. struct batadv_orig_node **mcast_single_orig)
  51. {
  52. return BATADV_FORW_ALL;
  53. }
  54. static inline int batadv_mcast_init(struct batadv_priv *bat_priv)
  55. {
  56. return 0;
  57. }
  58. static inline void batadv_mcast_free(struct batadv_priv *bat_priv)
  59. {
  60. }
  61. static inline void batadv_mcast_purge_orig(struct batadv_orig_node *orig_node)
  62. {
  63. }
  64. #endif /* CONFIG_BATMAN_ADV_MCAST */
  65. #endif /* _NET_BATMAN_ADV_MULTICAST_H_ */