ad08c3633c
This adds WPS support for both hostapd and wpa_supplicant. Both programs can be configured to act as WPS Enrollee and Registrar. Both PBC and PIN methods are supported. Currently, hostapd has more complete configuration option for WPS parameters and wpa_supplicant configuration style will likely change in the future. External Registrars are not yet supported in hostapd or wpa_supplicant. While wpa_supplicant has initial support for acting as an Registrar to configure an AP, this is still using number of hardcoded parameters which will need to be made configurable for proper operation.
33 lines
863 B
C
33 lines
863 B
C
/*
|
|
* EAP-WSC definitions for Wi-Fi Protected Setup
|
|
* Copyright (c) 2007, 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 EAP_WSC_COMMON_H
|
|
#define EAP_WSC_COMMON_H
|
|
|
|
#define EAP_VENDOR_TYPE_WSC 1
|
|
|
|
#define WSC_FLAGS_MF 0x01
|
|
#define WSC_FLAGS_LF 0x02
|
|
|
|
#define WSC_ID_REGISTRAR "WFA-SimpleConfig-Registrar-1-0"
|
|
#define WSC_ID_REGISTRAR_LEN 30
|
|
#define WSC_ID_ENROLLEE "WFA-SimpleConfig-Enrollee-1-0"
|
|
#define WSC_ID_ENROLLEE_LEN 29
|
|
|
|
#define WSC_FRAGMENT_SIZE 1400
|
|
|
|
|
|
struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code);
|
|
|
|
#endif /* EAP_WSC_COMMON_H */
|