|
@@ -2582,6 +2582,8 @@ static int nl80211_get_mesh_params(struct sk_buff *skb,
|
|
|
cur_params.dot11MeshMaxRetries);
|
|
|
NLA_PUT_U8(msg, NL80211_MESHCONF_TTL,
|
|
|
cur_params.dot11MeshTTL);
|
|
|
+ NLA_PUT_U8(msg, NL80211_MESHCONF_ELEMENT_TTL,
|
|
|
+ cur_params.element_ttl);
|
|
|
NLA_PUT_U8(msg, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
|
|
|
cur_params.auto_open_plinks);
|
|
|
NLA_PUT_U8(msg, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
|
|
@@ -2623,6 +2625,7 @@ static const struct nla_policy nl80211_meshconf_params_policy[NL80211_MESHCONF_A
|
|
|
[NL80211_MESHCONF_MAX_PEER_LINKS] = { .type = NLA_U16 },
|
|
|
[NL80211_MESHCONF_MAX_RETRIES] = { .type = NLA_U8 },
|
|
|
[NL80211_MESHCONF_TTL] = { .type = NLA_U8 },
|
|
|
+ [NL80211_MESHCONF_ELEMENT_TTL] = { .type = NLA_U8 },
|
|
|
[NL80211_MESHCONF_AUTO_OPEN_PLINKS] = { .type = NLA_U8 },
|
|
|
|
|
|
[NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES] = { .type = NLA_U8 },
|
|
@@ -2670,6 +2673,8 @@ static int nl80211_set_mesh_params(struct sk_buff *skb, struct genl_info *info)
|
|
|
mask, NL80211_MESHCONF_MAX_RETRIES, nla_get_u8);
|
|
|
FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshTTL,
|
|
|
mask, NL80211_MESHCONF_TTL, nla_get_u8);
|
|
|
+ FILL_IN_MESH_PARAM_IF_SET(tb, cfg, element_ttl,
|
|
|
+ mask, NL80211_MESHCONF_ELEMENT_TTL, nla_get_u8);
|
|
|
FILL_IN_MESH_PARAM_IF_SET(tb, cfg, auto_open_plinks,
|
|
|
mask, NL80211_MESHCONF_AUTO_OPEN_PLINKS, nla_get_u8);
|
|
|
FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPmaxPREQretries,
|