Lines Matching refs:auth
2841 struct auth_body auth;
2854 auth.alg = cpu_to_le16(system);
2856 auth.status = 0;
2857 auth.trans_seq = cpu_to_le16(priv->CurrentAuthentTransactionSeqNum);
2862 auth.el_id = 16; /* challenge_text */
2863 auth.chall_text_len = challenge_len;
2864 memcpy(auth.chall_text, challenge, challenge_len);
2865 atmel_transmit_management_frame(priv, &header, (u8 *)&auth, 8 + challenge_len);
2867 atmel_transmit_management_frame(priv, &header, (u8 *)&auth, 6);
3021 struct auth_body *auth = (struct auth_body *)priv->rx_buf;
3022 u16 status = le16_to_cpu(auth->status);
3023 u16 trans_seq_no = le16_to_cpu(auth->trans_seq);
3024 u16 system = le16_to_cpu(auth->alg);
3051 auth->el_id == WLAN_EID_CHALLENGE) {
3052 send_authentication_request(priv, system, auth->chall_text, auth->chall_text_len);
3073 /* Flip back and forth between WEP auth modes until the max
3436 int auth = WLAN_AUTH_OPEN;
3441 auth = WLAN_AUTH_SHARED_KEY;
3442 send_authentication_request(priv, auth, NULL, 0);
3551 int auth = WLAN_AUTH_OPEN;
3558 auth = WLAN_AUTH_SHARED_KEY;
3559 send_authentication_request(priv, auth, NULL, 0);