batman-adv: Split batadv_priv in sub-structures for features
authorSven Eckelmann <sven@narfation.org>
Sun, 15 Jul 2012 20:26:51 +0000 (22:26 +0200)
committerAntonio Quartulli <ordex@autistici.org>
Thu, 23 Aug 2012 12:20:13 +0000 (14:20 +0200)
commit807736f6e00714fdeb443b31061d1c27fa903296
treea070c2e9316365424e4d08e2fa50e5a28729670d
parent624463079e0af455a2d70d2a59b9e2f6b5827aea
batman-adv: Split batadv_priv in sub-structures for features

The structure batadv_priv grows everytime a new feature is introduced. It gets
hard to find the parts of the struct that belongs to a specific feature. This
becomes even harder by the fact that not every feature uses a prefix in the
member name.

The variables for bridge loop avoidence, gateway handling, translation table
and visualization server are moved into separate structs that are included in
the bat_priv main struct.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
net/batman-adv/bat_iv_ogm.c
net/batman-adv/bridge_loop_avoidance.c
net/batman-adv/gateway_client.c
net/batman-adv/hard-interface.c
net/batman-adv/main.c
net/batman-adv/routing.c
net/batman-adv/soft-interface.c
net/batman-adv/translation-table.c
net/batman-adv/types.h
net/batman-adv/vis.c
This page took 0.026099 seconds and 5 git commands to generate.