]>
Commit | Line | Data |
---|---|---|
70ebe4a4 | 1 | /* Copyright 2011-2014 Autronica Fire and Security AS |
f421436a AB |
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): | |
70ebe4a4 | 9 | * 2011-2014 Arvid Brodin, [email protected] |
f421436a AB |
10 | */ |
11 | ||
70ebe4a4 AB |
12 | #ifndef __HSR_FRAMEREG_H |
13 | #define __HSR_FRAMEREG_H | |
f421436a AB |
14 | |
15 | #include "hsr_main.h" | |
16 | ||
70ebe4a4 | 17 | struct hsr_node; |
f421436a | 18 | |
f266a683 AB |
19 | struct hsr_node *hsr_add_node(struct list_head *node_db, unsigned char addr[], |
20 | u16 seq_out); | |
675c8da0 | 21 | struct hsr_node *hsr_get_node(struct hsr_port *port, struct sk_buff *skb, |
f266a683 AB |
22 | bool is_sup); |
23 | void hsr_handle_sup_frame(struct sk_buff *skb, struct hsr_node *node_curr, | |
24 | struct hsr_port *port); | |
25 | bool hsr_addr_is_self(struct hsr_priv *hsr, unsigned char *addr); | |
26 | ||
27 | void hsr_addr_subst_source(struct hsr_node *node, struct sk_buff *skb); | |
28 | void hsr_addr_subst_dest(struct hsr_node *node_src, struct sk_buff *skb, | |
c5a75911 | 29 | struct hsr_port *port); |
f421436a | 30 | |
f266a683 AB |
31 | void hsr_register_frame_in(struct hsr_node *node, struct hsr_port *port, |
32 | u16 sequence_nr); | |
33 | int hsr_register_frame_out(struct hsr_port *port, struct hsr_node *node, | |
34 | u16 sequence_nr); | |
f421436a | 35 | |
dda436b7 | 36 | void hsr_prune_nodes(struct timer_list *t); |
f421436a AB |
37 | |
38 | int hsr_create_self_node(struct list_head *self_node_db, | |
39 | unsigned char addr_a[ETH_ALEN], | |
40 | unsigned char addr_b[ETH_ALEN]); | |
41 | ||
70ebe4a4 | 42 | void *hsr_get_next_node(struct hsr_priv *hsr, void *_pos, |
f421436a AB |
43 | unsigned char addr[ETH_ALEN]); |
44 | ||
70ebe4a4 | 45 | int hsr_get_node_data(struct hsr_priv *hsr, |
f421436a AB |
46 | const unsigned char *addr, |
47 | unsigned char addr_b[ETH_ALEN], | |
48 | unsigned int *addr_b_ifindex, | |
49 | int *if1_age, | |
50 | u16 *if1_seq, | |
51 | int *if2_age, | |
52 | u16 *if2_seq); | |
53 | ||
70ebe4a4 | 54 | #endif /* __HSR_FRAMEREG_H */ |