From: Dmitry Shmidt Date: Wed, 15 Jan 2014 18:27:19 +0000 (-0800) Subject: P2P: Add missing direct global ctrl_iface commands for P2P X-Git-Tag: hostap_2_1~117 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=443427e4ed09a6785dc9f7e3379ffa69686590cd;p=thirdparty%2Fhostap.git P2P: Add missing direct global ctrl_iface commands for P2P It should be noted that these commands are not exclusively used for P2P or in the global context, so use of these commands through the global control interface for operations that are specific to a single interface have undefined behavior and that behavior may change in the future. As such, these are recommend only for operations that are in the global context (e.g., for P2P management). Signed-off-by: Dmitry Shmidt --- diff --git a/wpa_supplicant/ctrl_iface.c b/wpa_supplicant/ctrl_iface.c index 0214b3860..f7ee6e3a2 100644 --- a/wpa_supplicant/ctrl_iface.c +++ b/wpa_supplicant/ctrl_iface.c @@ -6345,6 +6345,8 @@ static char * wpas_global_ctrl_iface_redir_p2p(struct wpa_global *global, { #ifdef CONFIG_P2P static const char * cmd[] = { + "LIST_NETWORKS", + "SAVE_CONFIG", "P2P_FIND", "P2P_STOP_FIND", "P2P_LISTEN", @@ -6359,6 +6361,12 @@ static char * wpas_global_ctrl_iface_redir_p2p(struct wpa_global *global, NULL }; static const char * prefix[] = { +#ifdef ANDROID + "DRIVER ", +#endif /* ANDROID */ + "GET_NETWORK ", + "REMOVE_NETWORK ", + "SET ", "P2P_FIND ", "P2P_CONNECT ", "P2P_LISTEN ",