diff options
author | Antonio Quartulli <antonio@open-mesh.com> | 2013-11-16 06:03:50 -0500 |
---|---|---|
committer | Antonio Quartulli <antonio@meshcoding.com> | 2014-01-08 14:49:44 -0500 |
commit | 2d2fcc2a3ff79de1fa3fba10f88c324d769392af (patch) | |
tree | 58a6257c9d1c23c9d5ac5e2fced1fbd8f2fd5e6d /net/batman-adv | |
parent | dd24ddb265b32990592770dab53f708f66e41ec2 (diff) |
batman-adv: extend the ap_isolation mechanism
Change the AP isolation mechanism to not only "isolate" WIFI
clients but also all those marked with the more generic
"isolation flag" (BATADV_TT_CLIENT_ISOLA).
The result is that when AP isolation is on any unicast
packet originated by an "isolated" client and directed to
another "isolated" client is dropped at the source node.
Signed-off-by: Antonio Quartulli <antonio@open-mesh.com>
Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch>
Diffstat (limited to 'net/batman-adv')
-rw-r--r-- | net/batman-adv/translation-table.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/batman-adv/translation-table.c b/net/batman-adv/translation-table.c index eeceb13c044e..a874d08f9f0a 100644 --- a/net/batman-adv/translation-table.c +++ b/net/batman-adv/translation-table.c | |||
@@ -1869,6 +1869,11 @@ _batadv_is_ap_isolated(struct batadv_tt_local_entry *tt_local_entry, | |||
1869 | tt_global_entry->common.flags & BATADV_TT_CLIENT_WIFI) | 1869 | tt_global_entry->common.flags & BATADV_TT_CLIENT_WIFI) |
1870 | ret = true; | 1870 | ret = true; |
1871 | 1871 | ||
1872 | /* check if the two clients are marked as isolated */ | ||
1873 | if (tt_local_entry->common.flags & BATADV_TT_CLIENT_ISOLA && | ||
1874 | tt_global_entry->common.flags & BATADV_TT_CLIENT_ISOLA) | ||
1875 | ret = true; | ||
1876 | |||
1872 | return ret; | 1877 | return ret; |
1873 | } | 1878 | } |
1874 | 1879 | ||