mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 08:48:31 -05:00
fa16028d0f
Instead of calling specific Probe Request handler functions, use a generic mechanism that allows multiple callback functions to be registered for getting notification on receive Probe Request frames.
44 lines
1.1 KiB
C
44 lines
1.1 KiB
C
/*
|
|
* hostapd / WPS integration
|
|
* Copyright (c) 2008, Jouni Malinen <j@w1.fi>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* Alternatively, this software may be distributed under the terms of BSD
|
|
* license.
|
|
*
|
|
* See README and COPYING for more details.
|
|
*/
|
|
|
|
#ifndef WPS_HOSTAPD_H
|
|
#define WPS_HOSTAPD_H
|
|
|
|
#ifdef CONFIG_WPS
|
|
|
|
int hostapd_init_wps(struct hostapd_data *hapd,
|
|
struct hostapd_bss_config *conf);
|
|
void hostapd_deinit_wps(struct hostapd_data *hapd);
|
|
int hostapd_wps_add_pin(struct hostapd_data *hapd, const char *uuid,
|
|
const char *pin, int timeout);
|
|
int hostapd_wps_button_pushed(struct hostapd_data *hapd);
|
|
int hostapd_wps_start_oob(struct hostapd_data *hapd, char *device_type,
|
|
char *path, char *method, char *name);
|
|
|
|
#else /* CONFIG_WPS */
|
|
|
|
static inline int hostapd_init_wps(struct hostapd_data *hapd,
|
|
struct hostapd_bss_config *conf)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void hostapd_deinit_wps(struct hostapd_data *hapd)
|
|
{
|
|
}
|
|
|
|
#endif /* CONFIG_WPS */
|
|
|
|
#endif /* WPS_HOSTAPD_H */
|