From: Chun-Yeow Yeoh Date: Thu, 8 Dec 2011 18:25:15 +0000 (-0800) Subject: iw: allow setting mesh mcast-rate X-Git-Tag: v3.4~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d01a091fefcd25e0a1216afd166582f3386bb89;p=thirdparty%2Fiw.git iw: allow setting mesh mcast-rate Signed-off-by: Chun-Yeow Yeoh Signed-off-by: Thomas Pedersen --- diff --git a/mesh.c b/mesh.c index dc8f49c..37fd1cd 100644 --- a/mesh.c +++ b/mesh.c @@ -342,6 +342,9 @@ COMMAND(get, mesh_param, "[]", static int join_mesh(struct nl80211_state *state, struct nl_cb *cb, struct nl_msg *msg, int argc, char **argv) { + float rate; + char *end; + if (argc < 1) return 1; @@ -349,15 +352,28 @@ static int join_mesh(struct nl80211_state *state, struct nl_cb *cb, argc--; argv++; + if (argc > 1 && strcmp(argv[0], "mcast-rate") == 0) { + argv++; + argc--; + + rate = strtod(argv[0], &end); + if (*end != '\0') + return 1; + + NLA_PUT_U32(msg, NL80211_ATTR_MCAST_RATE, (int)(rate * 10)); + argv++; + argc--; + } + if (!argc) return 0; return set_interface_meshparam(state, cb, msg, argc, argv); nla_put_failure: return -ENOBUFS; } -COMMAND(mesh, join, " [=]*", +COMMAND(mesh, join, " [mcast-rate ] [=]*", NL80211_CMD_JOIN_MESH, 0, CIB_NETDEV, join_mesh, - "Join a mesh with the given mesh ID and mesh parameters."); + "Join a mesh with the given mesh ID with mcast-rate and mesh parameters."); static int leave_mesh(struct nl80211_state *state, struct nl_cb *cb, struct nl_msg *msg, int argc, char **argv)