diff options
author | Simon Wunderlich <simon.wunderlich@s2003.tu-chemnitz.de> | 2013-04-25 04:37:25 -0400 |
---|---|---|
committer | Antonio Quartulli <antonio@meshcoding.com> | 2013-10-09 15:22:35 -0400 |
commit | 18c68d5960c8dfeb2db113f4b871bab259cfd565 (patch) | |
tree | cf68080abea41b3e6dea7808c45785c17838e1e7 /net/batman-adv/packet.h | |
parent | 9284a47e8bd7d19fc1230cc8d5982820d357c3ed (diff) |
batman-adv: reorder batadv_iv_flags
The vis flag is not needed anymore, and since we do a compat bump we
can start with the first bit again
Signed-off-by: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
Diffstat (limited to 'net/batman-adv/packet.h')
-rw-r--r-- | net/batman-adv/packet.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/net/batman-adv/packet.h b/net/batman-adv/packet.h index 4e5fe7d0dcbe..4361bae6186a 100644 --- a/net/batman-adv/packet.h +++ b/net/batman-adv/packet.h | |||
@@ -67,10 +67,19 @@ enum batadv_subtype { | |||
67 | /* this file is included by batctl which needs these defines */ | 67 | /* this file is included by batctl which needs these defines */ |
68 | #define BATADV_COMPAT_VERSION 15 | 68 | #define BATADV_COMPAT_VERSION 15 |
69 | 69 | ||
70 | /** | ||
71 | * enum batadv_iv_flags - flags used in B.A.T.M.A.N. IV OGM packets | ||
72 | * @BATADV_NOT_BEST_NEXT_HOP: flag is set when ogm packet is forwarded and was | ||
73 | * previously received from someone else than the best neighbor. | ||
74 | * @BATADV_PRIMARIES_FIRST_HOP: flag is set when the primary interface address | ||
75 | * is used, and the packet travels its first hop. | ||
76 | * @BATADV_DIRECTLINK: flag is for the first hop or if rebroadcasted from a | ||
77 | * one hop neighbor on the interface where it was originally received. | ||
78 | */ | ||
70 | enum batadv_iv_flags { | 79 | enum batadv_iv_flags { |
71 | BATADV_NOT_BEST_NEXT_HOP = BIT(3), | 80 | BATADV_NOT_BEST_NEXT_HOP = BIT(0), |
72 | BATADV_PRIMARIES_FIRST_HOP = BIT(4), | 81 | BATADV_PRIMARIES_FIRST_HOP = BIT(1), |
73 | BATADV_DIRECTLINK = BIT(6), | 82 | BATADV_DIRECTLINK = BIT(2), |
74 | }; | 83 | }; |
75 | 84 | ||
76 | /* ICMP message types */ | 85 | /* ICMP message types */ |
@@ -164,11 +173,12 @@ struct batadv_header { | |||
164 | /** | 173 | /** |
165 | * struct batadv_ogm_packet - ogm (routing protocol) packet | 174 | * struct batadv_ogm_packet - ogm (routing protocol) packet |
166 | * @header: common batman packet header | 175 | * @header: common batman packet header |
176 | * @flags: contains routing relevant flags - see enum batadv_iv_flags | ||
167 | * @tvlv_len: length of tvlv data following the ogm header | 177 | * @tvlv_len: length of tvlv data following the ogm header |
168 | */ | 178 | */ |
169 | struct batadv_ogm_packet { | 179 | struct batadv_ogm_packet { |
170 | struct batadv_header header; | 180 | struct batadv_header header; |
171 | uint8_t flags; /* 0x40: DIRECTLINK flag ... */ | 181 | uint8_t flags; |
172 | __be32 seqno; | 182 | __be32 seqno; |
173 | uint8_t orig[ETH_ALEN]; | 183 | uint8_t orig[ETH_ALEN]; |
174 | uint8_t prev_sender[ETH_ALEN]; | 184 | uint8_t prev_sender[ETH_ALEN]; |