Maximum number of neighbors to synchronize to for mesh default synchronization method Signed-off-by: Marco Porsch <marco.porsch@xxxxxxxxxxxxxxxxxxx> --- mesh.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/mesh.c b/mesh.c index b2c7208..12147a2 100644 --- a/mesh.c +++ b/mesh.c @@ -116,6 +116,11 @@ static void _print_u16_in_TUs(struct nlattr *a) printf("%d TUs", nla_get_u16(a)); } +static void _print_u32(struct nlattr *a) +{ + printf("%d", nla_get_u32(a)); +} + static void _print_u32_timeout(struct nlattr *a) { printf("%u milliseconds", nla_get_u32(a)); @@ -179,6 +184,9 @@ const static struct mesh_param_descr _mesh_param_descrs[] = _my_nla_put_u8, _parse_u8, _print_u8}, {"mesh_fwding", NL80211_MESHCONF_FORWARDING, _my_nla_put_u8, _parse_u8_as_bool, _print_u8}, + {"mesh_sync_offset_max_neighor", + NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, + _my_nla_put_u32, _parse_u32, _print_u32}, }; static void print_all_mesh_param_descr(void) -- 1.7.5.4 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html