Updated through tag hostap_2_5 from git://w1.fi/hostap.git
[mech_eap.git] / libeap / src / eap_common / eap_wsc_common.h
1 /*
2  * EAP-WSC definitions for Wi-Fi Protected Setup
3  * Copyright (c) 2007, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #ifndef EAP_WSC_COMMON_H
10 #define EAP_WSC_COMMON_H
11
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15
16 #define EAP_VENDOR_TYPE_WSC 1
17
18 #define WSC_FLAGS_MF 0x01
19 #define WSC_FLAGS_LF 0x02
20
21 #define WSC_ID_REGISTRAR "WFA-SimpleConfig-Registrar-1-0"
22 #define WSC_ID_REGISTRAR_LEN 30
23 #define WSC_ID_ENROLLEE "WFA-SimpleConfig-Enrollee-1-0"
24 #define WSC_ID_ENROLLEE_LEN 29
25
26 #define WSC_FRAGMENT_SIZE 1400
27
28
29 struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code);
30
31 #ifdef __cplusplus
32 }
33 #endif
34
35 #endif /* EAP_WSC_COMMON_H */