Skip to content

Commit

Permalink
Fixed problem with not being able to decrypt/encrypt broadcast packets.
Browse files Browse the repository at this point in the history
Signed-off-by: James Ketrenos <[email protected]>
  • Loading branch information
hongliu68 authored and James Ketrenos committed Oct 19, 2005
1 parent c4cfe56 commit 5b74eda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion net/ieee80211/ieee80211_rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,8 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
return 1;
}

if (is_multicast_ether_addr(hdr->addr1) ? ieee->host_mc_decrypt :
if ((is_multicast_ether_addr(hdr->addr1) ||
is_broadcast_ether_addr(hdr->addr2)) ? ieee->host_mc_decrypt :
ieee->host_decrypt) {
int idx = 0;
if (skb->len >= hdrlen + 3)
Expand Down
3 changes: 2 additions & 1 deletion net/ieee80211/ieee80211_tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,8 @@ int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev)
if (host_encrypt || ieee->host_open_frag) {
/* Determine fragmentation size based on destination (multicast
* and broadcast are not fragmented) */
if (is_multicast_ether_addr(dest))
if (is_multicast_ether_addr(dest) ||
is_broadcast_ether_addr(dest))
frag_size = MAX_FRAG_THRESHOLD;
else
frag_size = ieee->fts;
Expand Down

0 comments on commit 5b74eda

Please sign in to comment.