diff options
author | Antonio Quartulli <ordex@autistici.org> | 2011-05-05 02:42:45 -0400 |
---|---|---|
committer | Sven Eckelmann <sven@narfation.org> | 2011-05-08 10:10:42 -0400 |
commit | 2dafb49d84a9195193b28ac5047df1bbab6053b9 (patch) | |
tree | cb3a9a77496257c54ce9fb61c4ff08743a98dc31 /net/batman-adv/main.h | |
parent | 01df2b65e97735547ce37844f4134b5ea99b4037 (diff) |
batman-adv: rename everything from *hna* into *tt* (translation table)
To be coherent, all the functions/variables/constants have been renamed
to the TranslationTable style
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv/main.h')
-rw-r--r-- | net/batman-adv/main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/batman-adv/main.h b/net/batman-adv/main.h index ace72852ed7b..9ef6ef9b1e18 100644 --- a/net/batman-adv/main.h +++ b/net/batman-adv/main.h | |||
@@ -39,7 +39,7 @@ | |||
39 | #define PURGE_TIMEOUT 200 /* purge originators after time in seconds if no | 39 | #define PURGE_TIMEOUT 200 /* purge originators after time in seconds if no |
40 | * valid packet comes in -> TODO: check | 40 | * valid packet comes in -> TODO: check |
41 | * influence on TQ_LOCAL_WINDOW_SIZE */ | 41 | * influence on TQ_LOCAL_WINDOW_SIZE */ |
42 | #define LOCAL_HNA_TIMEOUT 3600 /* in seconds */ | 42 | #define TT_LOCAL_TIMEOUT 3600 /* in seconds */ |
43 | 43 | ||
44 | #define TQ_LOCAL_WINDOW_SIZE 64 /* sliding packet range of received originator | 44 | #define TQ_LOCAL_WINDOW_SIZE 64 /* sliding packet range of received originator |
45 | * messages in squence numbers (should be a | 45 | * messages in squence numbers (should be a |
@@ -89,7 +89,7 @@ | |||
89 | 89 | ||
90 | #define DBG_BATMAN 1 /* all messages related to routing / flooding / | 90 | #define DBG_BATMAN 1 /* all messages related to routing / flooding / |
91 | * broadcasting / etc */ | 91 | * broadcasting / etc */ |
92 | #define DBG_ROUTES 2 /* route or hna added / changed / deleted */ | 92 | #define DBG_ROUTES 2 /* route or tt entry added / changed / deleted */ |
93 | #define DBG_ALL 3 | 93 | #define DBG_ALL 3 |
94 | 94 | ||
95 | 95 | ||