diff options
author | Antonio Quartulli <ordex@autistici.org> | 2011-07-07 03:40:58 +0400 |
---|---|---|
committer | Marek Lindner <lindner_marek@yahoo.de> | 2011-07-07 20:49:26 +0400 |
commit | 058d0e26989e3da2fa031f551235f6ff1e0bc27c (patch) | |
tree | f39ce9771166b9a110a38c65621eb2128c152068 /net/batman-adv/translation-table.h | |
parent | c8c991bf2076d711f14ff9063db306fd522ddcd4 (diff) | |
download | linux-058d0e26989e3da2fa031f551235f6ff1e0bc27c.tar.xz |
batman-adv: keep local table consistency for further TT_RESPONSE
To keep transtable consistency among all the nodes, an originator must
not send not yet announced clients within a full table TT_RESPONSE.
Instead, deleted client have to be kept in the table in order to be sent
within an immediate TT_RESPONSE. In this way all the nodes in the
network will always provide the same response for the same request.
All the modification are committed at the next ttvn increment event.
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Diffstat (limited to 'net/batman-adv/translation-table.h')
-rw-r--r-- | net/batman-adv/translation-table.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/batman-adv/translation-table.h b/net/batman-adv/translation-table.h index 460e5839cdd6..d4122cba53b8 100644 --- a/net/batman-adv/translation-table.h +++ b/net/batman-adv/translation-table.h @@ -61,5 +61,6 @@ void handle_tt_response(struct bat_priv *bat_priv, struct tt_query_packet *tt_response); void send_roam_adv(struct bat_priv *bat_priv, uint8_t *client, struct orig_node *orig_node); +void tt_commit_changes(struct bat_priv *bat_priv); #endif /* _NET_BATMAN_ADV_TRANSLATION_TABLE_H_ */ |