diff options
author | Jouni Malinen <j@w1.fi> | 2011-12-22 22:47:41 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2011-12-22 22:47:41 +0200 |
commit | fbdcfd577a3f6245c9c34e09842e766777a84ea7 (patch) | |
tree | 8a3728f8b1a499a600981142ed4b3232d1c83778 /src/ap/hostapd.h | |
parent | 87f841a1407dc8f988d6c43a9c4307e34e86986f (diff) | |
download | external_wpa_supplicant_8_ti-fbdcfd577a3f6245c9c34e09842e766777a84ea7.zip external_wpa_supplicant_8_ti-fbdcfd577a3f6245c9c34e09842e766777a84ea7.tar.gz external_wpa_supplicant_8_ti-fbdcfd577a3f6245c9c34e09842e766777a84ea7.tar.bz2 |
P2P: Maintain a list of P2P Clients for persistent group on GO
Add a new persistent group network block field, p2p_client_list, to
maintain a list of P2P Clients that have connected to a persistent
group. This allows GO of a persistent group to figure out more easily
whether re-invocation of a persistent group can be used with a specific
peer device.
Signed-hostap: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src/ap/hostapd.h')
-rw-r--r-- | src/ap/hostapd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ap/hostapd.h b/src/ap/hostapd.h index 5b72768..c6f6205 100644 --- a/src/ap/hostapd.h +++ b/src/ap/hostapd.h @@ -149,7 +149,7 @@ struct hostapd_data { void *wps_event_cb_ctx; void (*sta_authorized_cb)(void *ctx, const u8 *mac_addr, - int authorized); + int authorized, const u8 *p2p_dev_addr); void *sta_authorized_cb_ctx; void (*setup_complete_cb)(void *ctx); |