aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@pobox.com>2005-08-25 20:59:10 -0400
committerJeff Garzik <jgarzik@pobox.com>2005-08-25 20:59:10 -0400
commit831a179fc9387af6dbaa12816ae1e074d1f1a730 (patch)
treeefb3ea5fc390e7cefdaadb535dc166319ac6f69d /drivers/net
parentb4bf343093e81e33d75bede45896eda52cd5f2b4 (diff)
hostap: s/IEEE80211_FCTL_WEP/IEEE80211_FCTL_PROTECTED/ to fix build
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/wireless/hostap/hostap_80211_rx.c14
-rw-r--r--drivers/net/wireless/hostap/hostap_80211_tx.c2
-rw-r--r--drivers/net/wireless/hostap/hostap_ap.c2
3 files changed, 9 insertions, 9 deletions
diff --git a/drivers/net/wireless/hostap/hostap_80211_rx.c b/drivers/net/wireless/hostap/hostap_80211_rx.c
index 051a59075ea8..b0501243b175 100644
--- a/drivers/net/wireless/hostap/hostap_80211_rx.c
+++ b/drivers/net/wireless/hostap/hostap_80211_rx.c
@@ -773,7 +773,7 @@ void hostap_80211_rx(struct net_device *dev, struct sk_buff *skb,
773 crypt->ops->decrypt_mpdu == NULL)) 773 crypt->ops->decrypt_mpdu == NULL))
774 crypt = NULL; 774 crypt = NULL;
775 775
776 if (!crypt && (fc & IEEE80211_FCTL_WEP)) { 776 if (!crypt && (fc & IEEE80211_FCTL_PROTECTED)) {
777#if 0 777#if 0
778 /* This seems to be triggered by some (multicast?) 778 /* This seems to be triggered by some (multicast?)
779 * frames from other than current BSS, so just drop the 779 * frames from other than current BSS, so just drop the
@@ -791,7 +791,7 @@ void hostap_80211_rx(struct net_device *dev, struct sk_buff *skb,
791 if (type != IEEE80211_FTYPE_DATA) { 791 if (type != IEEE80211_FTYPE_DATA) {
792 if (type == IEEE80211_FTYPE_MGMT && 792 if (type == IEEE80211_FTYPE_MGMT &&
793 stype == IEEE80211_STYPE_AUTH && 793 stype == IEEE80211_STYPE_AUTH &&
794 fc & IEEE80211_FCTL_WEP && local->host_decrypt && 794 fc & IEEE80211_FCTL_PROTECTED && local->host_decrypt &&
795 (keyidx = hostap_rx_frame_decrypt(local, skb, crypt)) < 0) 795 (keyidx = hostap_rx_frame_decrypt(local, skb, crypt)) < 0)
796 { 796 {
797 printk(KERN_DEBUG "%s: failed to decrypt mgmt::auth " 797 printk(KERN_DEBUG "%s: failed to decrypt mgmt::auth "
@@ -886,14 +886,14 @@ void hostap_80211_rx(struct net_device *dev, struct sk_buff *skb,
886 886
887 /* skb: hdr + (possibly fragmented, possibly encrypted) payload */ 887 /* skb: hdr + (possibly fragmented, possibly encrypted) payload */
888 888
889 if (local->host_decrypt && (fc & IEEE80211_FCTL_WEP) && 889 if (local->host_decrypt && (fc & IEEE80211_FCTL_PROTECTED) &&
890 (keyidx = hostap_rx_frame_decrypt(local, skb, crypt)) < 0) 890 (keyidx = hostap_rx_frame_decrypt(local, skb, crypt)) < 0)
891 goto rx_dropped; 891 goto rx_dropped;
892 hdr = (struct ieee80211_hdr *) skb->data; 892 hdr = (struct ieee80211_hdr *) skb->data;
893 893
894 /* skb: hdr + (possibly fragmented) plaintext payload */ 894 /* skb: hdr + (possibly fragmented) plaintext payload */
895 895
896 if (local->host_decrypt && (fc & IEEE80211_FCTL_WEP) && 896 if (local->host_decrypt && (fc & IEEE80211_FCTL_PROTECTED) &&
897 (frag != 0 || (fc & IEEE80211_FCTL_MOREFRAGS))) { 897 (frag != 0 || (fc & IEEE80211_FCTL_MOREFRAGS))) {
898 int flen; 898 int flen;
899 struct sk_buff *frag_skb = 899 struct sk_buff *frag_skb =
@@ -948,12 +948,12 @@ void hostap_80211_rx(struct net_device *dev, struct sk_buff *skb,
948 /* skb: hdr + (possible reassembled) full MSDU payload; possibly still 948 /* skb: hdr + (possible reassembled) full MSDU payload; possibly still
949 * encrypted/authenticated */ 949 * encrypted/authenticated */
950 950
951 if (local->host_decrypt && (fc & IEEE80211_FCTL_WEP) && 951 if (local->host_decrypt && (fc & IEEE80211_FCTL_PROTECTED) &&
952 hostap_rx_frame_decrypt_msdu(local, skb, keyidx, crypt)) 952 hostap_rx_frame_decrypt_msdu(local, skb, keyidx, crypt))
953 goto rx_dropped; 953 goto rx_dropped;
954 954
955 hdr = (struct ieee80211_hdr *) skb->data; 955 hdr = (struct ieee80211_hdr *) skb->data;
956 if (crypt && !(fc & IEEE80211_FCTL_WEP) && !local->open_wep) { 956 if (crypt && !(fc & IEEE80211_FCTL_PROTECTED) && !local->open_wep) {
957 if (local->ieee_802_1x && 957 if (local->ieee_802_1x &&
958 hostap_is_eapol_frame(local, skb)) { 958 hostap_is_eapol_frame(local, skb)) {
959 /* pass unencrypted EAPOL frames even if encryption is 959 /* pass unencrypted EAPOL frames even if encryption is
@@ -968,7 +968,7 @@ void hostap_80211_rx(struct net_device *dev, struct sk_buff *skb,
968 } 968 }
969 } 969 }
970 970
971 if (local->drop_unencrypted && !(fc & IEEE80211_FCTL_WEP) && 971 if (local->drop_unencrypted && !(fc & IEEE80211_FCTL_PROTECTED) &&
972 !hostap_is_eapol_frame(local, skb)) { 972 !hostap_is_eapol_frame(local, skb)) {
973 if (net_ratelimit()) { 973 if (net_ratelimit()) {
974 printk(KERN_DEBUG "%s: dropped unencrypted RX data " 974 printk(KERN_DEBUG "%s: dropped unencrypted RX data "
diff --git a/drivers/net/wireless/hostap/hostap_80211_tx.c b/drivers/net/wireless/hostap/hostap_80211_tx.c
index fb378046ab39..6358015f6526 100644
--- a/drivers/net/wireless/hostap/hostap_80211_tx.c
+++ b/drivers/net/wireless/hostap/hostap_80211_tx.c
@@ -466,7 +466,7 @@ int hostap_master_start_xmit(struct sk_buff *skb, struct net_device *dev)
466 else if ((tx.crypt || local->crypt[local->tx_keyidx]) && !no_encrypt) { 466 else if ((tx.crypt || local->crypt[local->tx_keyidx]) && !no_encrypt) {
467 /* Add ISWEP flag both for firmware and host based encryption 467 /* Add ISWEP flag both for firmware and host based encryption
468 */ 468 */
469 fc |= IEEE80211_FCTL_WEP; 469 fc |= IEEE80211_FCTL_PROTECTED;
470 hdr->frame_ctl = cpu_to_le16(fc); 470 hdr->frame_ctl = cpu_to_le16(fc);
471 } else if (local->drop_unencrypted && 471 } else if (local->drop_unencrypted &&
472 WLAN_FC_GET_TYPE(fc) == IEEE80211_FTYPE_DATA && 472 WLAN_FC_GET_TYPE(fc) == IEEE80211_FTYPE_DATA &&
diff --git a/drivers/net/wireless/hostap/hostap_ap.c b/drivers/net/wireless/hostap/hostap_ap.c
index 2c6ea796e00e..930cef8367f2 100644
--- a/drivers/net/wireless/hostap/hostap_ap.c
+++ b/drivers/net/wireless/hostap/hostap_ap.c
@@ -1436,7 +1436,7 @@ static void handle_authen(local_info_t *local, struct sk_buff *skb,
1436 challenge == NULL || 1436 challenge == NULL ||
1437 memcmp(sta->u.sta.challenge, challenge, 1437 memcmp(sta->u.sta.challenge, challenge,
1438 WLAN_AUTH_CHALLENGE_LEN) != 0 || 1438 WLAN_AUTH_CHALLENGE_LEN) != 0 ||
1439 !(fc & IEEE80211_FCTL_WEP)) { 1439 !(fc & IEEE80211_FCTL_PROTECTED)) {
1440 txt = "challenge response incorrect"; 1440 txt = "challenge response incorrect";
1441 resp = WLAN_STATUS_CHALLENGE_FAIL; 1441 resp = WLAN_STATUS_CHALLENGE_FAIL;
1442 goto fail; 1442 goto fail;