Lines Matching refs:auth
2846 struct auth_body auth;
2859 auth.alg = cpu_to_le16(system);
2861 auth.status = 0;
2862 auth.trans_seq = cpu_to_le16(priv->CurrentAuthentTransactionSeqNum);
2867 auth.el_id = 16; /* challenge_text */
2868 auth.chall_text_len = challenge_len;
2869 memcpy(auth.chall_text, challenge, challenge_len);
2870 atmel_transmit_management_frame(priv, &header, (u8 *)&auth, 8 + challenge_len);
2872 atmel_transmit_management_frame(priv, &header, (u8 *)&auth, 6);
3026 struct auth_body *auth = (struct auth_body *)priv->rx_buf;
3027 u16 status = le16_to_cpu(auth->status);
3028 u16 trans_seq_no = le16_to_cpu(auth->trans_seq);
3029 u16 system = le16_to_cpu(auth->alg);
3056 auth->el_id == WLAN_EID_CHALLENGE) {
3057 send_authentication_request(priv, system, auth->chall_text, auth->chall_text_len);
3078 /* Flip back and forth between WEP auth modes until the max
3441 int auth = WLAN_AUTH_OPEN;
3446 auth = WLAN_AUTH_SHARED_KEY;
3447 send_authentication_request(priv, auth, NULL, 0);
3556 int auth = WLAN_AUTH_OPEN;
3563 auth = WLAN_AUTH_SHARED_KEY;
3564 send_authentication_request(priv, auth, NULL, 0);