Deleted Added
full compact
wpa_i.h (302408) wpa_i.h (324697)
1/*
2 * Internal WPA/RSN supplicant state machine definitions
3 * Copyright (c) 2004-2015, 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

--- 16 unchanged lines hidden (view full) ---

25 int ptk_set, tptk_set;
26 unsigned int msg_3_of_4_ok:1;
27 u8 snonce[WPA_NONCE_LEN];
28 u8 anonce[WPA_NONCE_LEN]; /* ANonce from the last 1/4 msg */
29 int renew_snonce;
30 u8 rx_replay_counter[WPA_REPLAY_COUNTER_LEN];
31 int rx_replay_counter_set;
32 u8 request_counter[WPA_REPLAY_COUNTER_LEN];
1/*
2 * Internal WPA/RSN supplicant state machine definitions
3 * Copyright (c) 2004-2015, 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

--- 16 unchanged lines hidden (view full) ---

25 int ptk_set, tptk_set;
26 unsigned int msg_3_of_4_ok:1;
27 u8 snonce[WPA_NONCE_LEN];
28 u8 anonce[WPA_NONCE_LEN]; /* ANonce from the last 1/4 msg */
29 int renew_snonce;
30 u8 rx_replay_counter[WPA_REPLAY_COUNTER_LEN];
31 int rx_replay_counter_set;
32 u8 request_counter[WPA_REPLAY_COUNTER_LEN];
33 struct wpa_gtk gtk;
34 struct wpa_gtk gtk_wnm_sleep;
35#ifdef CONFIG_IEEE80211W
36 struct wpa_igtk igtk;
37 struct wpa_igtk igtk_wnm_sleep;
38#endif /* CONFIG_IEEE80211W */
33
34 struct eapol_sm *eapol; /* EAPOL state machine from upper level code */
35
36 struct rsn_pmksa_cache *pmksa; /* PMKSA cache */
37 struct rsn_pmksa_cache_entry *cur_pmksa; /* current PMKSA entry */
38 struct dl_list pmksa_candidates;
39
40 struct l2_packet_data *l2_preauth;

--- 75 unchanged lines hidden (view full) ---

116 u8 pmk_r0_name[WPA_PMK_NAME_LEN];
117 u8 pmk_r1[PMK_LEN];
118 u8 pmk_r1_name[WPA_PMK_NAME_LEN];
119 u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
120 u8 r0kh_id[FT_R0KH_ID_MAX_LEN];
121 size_t r0kh_id_len;
122 u8 r1kh_id[FT_R1KH_ID_LEN];
123 int ft_completed;
39
40 struct eapol_sm *eapol; /* EAPOL state machine from upper level code */
41
42 struct rsn_pmksa_cache *pmksa; /* PMKSA cache */
43 struct rsn_pmksa_cache_entry *cur_pmksa; /* current PMKSA entry */
44 struct dl_list pmksa_candidates;
45
46 struct l2_packet_data *l2_preauth;

--- 75 unchanged lines hidden (view full) ---

122 u8 pmk_r0_name[WPA_PMK_NAME_LEN];
123 u8 pmk_r1[PMK_LEN];
124 u8 pmk_r1_name[WPA_PMK_NAME_LEN];
125 u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
126 u8 r0kh_id[FT_R0KH_ID_MAX_LEN];
127 size_t r0kh_id_len;
128 u8 r1kh_id[FT_R1KH_ID_LEN];
129 int ft_completed;
130 int ft_reassoc_completed;
124 int over_the_ds_in_progress;
125 u8 target_ap[ETH_ALEN]; /* over-the-DS target AP */
126 int set_ptk_after_assoc;
127 u8 mdie_ft_capab; /* FT Capability and Policy from target AP MDIE */
128 u8 *assoc_resp_ies; /* MDIE and FTIE from (Re)Association Response */
129 size_t assoc_resp_ies_len;
130#endif /* CONFIG_IEEE80211R */
131

--- 240 unchanged lines hidden ---
131 int over_the_ds_in_progress;
132 u8 target_ap[ETH_ALEN]; /* over-the-DS target AP */
133 int set_ptk_after_assoc;
134 u8 mdie_ft_capab; /* FT Capability and Policy from target AP MDIE */
135 u8 *assoc_resp_ies; /* MDIE and FTIE from (Re)Association Response */
136 size_t assoc_resp_ies_len;
137#endif /* CONFIG_IEEE80211R */
138

--- 240 unchanged lines hidden ---