diff options
author | Peng Xu <pxu@qca.qualcomm.com> | 2016-06-24 18:36:18 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2016-07-03 19:36:58 (GMT) |
commit | a6f5b1937ad45ced659d87b1eb5a665c8d137d34 (patch) | |
tree | 00bc2063071ce6c79ed121ed89d96155b5598ea2 /wpa_supplicant/p2p_supplicant.h | |
parent | 35d66557558159d149698ac760971d4e3c424b82 (diff) | |
download | hostap-a6f5b1937ad45ced659d87b1eb5a665c8d137d34.zip hostap-a6f5b1937ad45ced659d87b1eb5a665c8d137d34.tar.gz hostap-a6f5b1937ad45ced659d87b1eb5a665c8d137d34.tar.bz2 |
P2P: Allow P2P listen being offloaded to the driver/firmware
This allows P2P Listen to be offloaded to device to enhance power
saving.
To start P2P listen offload, from wpa_cli interface, issue the command:
p2p_lo_start <freq> <period> <interval> <count>
To stop P2P listen offload, issue the command:
p2p_lo_stop
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Diffstat (limited to 'wpa_supplicant/p2p_supplicant.h')
-rw-r--r-- | wpa_supplicant/p2p_supplicant.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wpa_supplicant/p2p_supplicant.h b/wpa_supplicant/p2p_supplicant.h index 6a770d2..63910d1 100644 --- a/wpa_supplicant/p2p_supplicant.h +++ b/wpa_supplicant/p2p_supplicant.h @@ -207,6 +207,10 @@ int wpas_p2p_wps_eapol_cb(struct wpa_supplicant *wpa_s); void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s, struct wps_event_fail *fail); int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname); +int wpas_p2p_lo_start(struct wpa_supplicant *wpa_s, unsigned int freq, + unsigned int period, unsigned int interval, + unsigned int count); +int wpas_p2p_lo_stop(struct wpa_supplicant *wpa_s); #else /* CONFIG_P2P */ |