Return-path: Received: from nick.hrz.tu-chemnitz.de ([134.109.228.11]:42086 "EHLO nick.hrz.tu-chemnitz.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756149Ab2KWUxb (ORCPT ); Fri, 23 Nov 2012 15:53:31 -0500 From: Marco Porsch To: johannes@sipsolutions.net, javier@cozybit.com, thomas@cozybit.com Cc: linux-wireless@vger.kernel.org, Marco Porsch Subject: [RFCv2 4/4] iw: add mesh awake window to mesh config Date: Fri, 23 Nov 2012 12:53:14 -0800 Message-Id: <1353703994-13093-5-git-send-email-marco.porsch@etit.tu-chemnitz.de> (sfid-20121123_215340_609559_9DAF76F4) In-Reply-To: <1353703994-13093-1-git-send-email-marco.porsch@etit.tu-chemnitz.de> References: <1353703994-13093-1-git-send-email-marco.porsch@etit.tu-chemnitz.de> Sender: linux-wireless-owner@vger.kernel.org List-ID: The awake window is the duration the local STA will stay awake after sending its own beacon in PS mode. The value can be modified as part of the mesh params. Signed-off-by: Marco Porsch --- mesh.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mesh.c b/mesh.c index 94f1012..6119b15 100644 --- a/mesh.c +++ b/mesh.c @@ -257,6 +257,8 @@ const static struct mesh_param_descr _mesh_param_descrs[] = _my_nla_put_u16, _parse_u16, _print_u16_in_TUs}, {"mesh_power_mode", NL80211_MESHCONF_POWER_MODE, _my_nla_put_u8, _parse_u8_power_mode, _print_u8_power_mode}, + {"mesh_awake_window", NL80211_MESHCONF_AWAKE_WINDOW, + _my_nla_put_u16, _parse_u16, _print_u16_in_TUs}, }; static void print_all_mesh_param_descr(void) -- 1.7.9.5