diff options
author | Eliad Peller <eliad@wizery.com> | 2014-04-24 05:45:39 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2014-04-29 15:59:12 (GMT) |
commit | e4fa8b120bf0014bc7f6f79f8d85923215833c9f (patch) | |
tree | d81a75c9c4d7f2c9bcfcd912a7e9fe406f4943d5 /wpa_supplicant/config.h | |
parent | 959214b260e930ef2148cf45f02d5a851058ae04 (diff) | |
download | hostap-e4fa8b120bf0014bc7f6f79f8d85923215833c9f.zip hostap-e4fa8b120bf0014bc7f6f79f8d85923215833c9f.tar.gz hostap-e4fa8b120bf0014bc7f6f79f8d85923215833c9f.tar.bz2 |
wpa_supplicant: Add Wake-on-WLAN configuration support
Add a new wowlan_triggers option to wpa_supplicant.conf. The triggers in
this key will be used to configure the kernel wowlan configuration.
For now, support only simple flags. More complex triggers can be added
later on.
Signed-off-by: Eliad Peller <eliadx.peller@intel.com>
Diffstat (limited to 'wpa_supplicant/config.h')
-rw-r--r-- | wpa_supplicant/config.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/wpa_supplicant/config.h b/wpa_supplicant/config.h index 26b1233..bf3f3f7 100644 --- a/wpa_supplicant/config.h +++ b/wpa_supplicant/config.h @@ -1022,6 +1022,13 @@ struct wpa_config { * directory. */ char *osu_dir; + + /** + * wowlan_triggers - Wake-on-WLAN triggers + * + * If set, these wowlan triggers will be configured. + */ + char *wowlan_triggers; }; |