hsr_framereg.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* Copyright 2011-2014 Autronica Fire and Security AS
  2. *
  3. * This program is free software; you can redistribute it and/or modify it
  4. * under the terms of the GNU General Public License as published by the Free
  5. * Software Foundation; either version 2 of the License, or (at your option)
  6. * any later version.
  7. *
  8. * Author(s):
  9. * 2011-2014 Arvid Brodin, arvid.brodin@alten.se
  10. */
  11. #ifndef __HSR_FRAMEREG_H
  12. #define __HSR_FRAMEREG_H
  13. #include "hsr_main.h"
  14. struct hsr_node;
  15. void hsr_del_node(struct list_head *self_node_db);
  16. struct hsr_node *hsr_add_node(struct list_head *node_db, unsigned char addr[],
  17. u16 seq_out);
  18. struct hsr_node *hsr_get_node(struct list_head *node_db, struct sk_buff *skb,
  19. bool is_sup);
  20. void hsr_handle_sup_frame(struct sk_buff *skb, struct hsr_node *node_curr,
  21. struct hsr_port *port);
  22. bool hsr_addr_is_self(struct hsr_priv *hsr, unsigned char *addr);
  23. void hsr_addr_subst_source(struct hsr_node *node, struct sk_buff *skb);
  24. void hsr_addr_subst_dest(struct hsr_node *node_src, struct sk_buff *skb,
  25. struct hsr_port *port);
  26. void hsr_register_frame_in(struct hsr_node *node, struct hsr_port *port,
  27. u16 sequence_nr);
  28. int hsr_register_frame_out(struct hsr_port *port, struct hsr_node *node,
  29. u16 sequence_nr);
  30. void hsr_prune_nodes(unsigned long data);
  31. int hsr_create_self_node(struct list_head *self_node_db,
  32. unsigned char addr_a[ETH_ALEN],
  33. unsigned char addr_b[ETH_ALEN]);
  34. void *hsr_get_next_node(struct hsr_priv *hsr, void *_pos,
  35. unsigned char addr[ETH_ALEN]);
  36. int hsr_get_node_data(struct hsr_priv *hsr,
  37. const unsigned char *addr,
  38. unsigned char addr_b[ETH_ALEN],
  39. unsigned int *addr_b_ifindex,
  40. int *if1_age,
  41. u16 *if1_seq,
  42. int *if2_age,
  43. u16 *if2_seq);
  44. #endif /* __HSR_FRAMEREG_H */