aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
Diffstat (limited to 'include/net')
-rw-r--r--include/net/ieee80211.h2
-rw-r--r--include/net/ieee80211_crypt.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/include/net/ieee80211.h b/include/net/ieee80211.h
index 43cf2e577191..46466f5a2b45 100644
--- a/include/net/ieee80211.h
+++ b/include/net/ieee80211.h
@@ -724,7 +724,9 @@ struct ieee80211_device {
724 724
725 /* If the host performs {en,de}cryption, then set to 1 */ 725 /* If the host performs {en,de}cryption, then set to 1 */
726 int host_encrypt; 726 int host_encrypt;
727 int host_encrypt_msdu;
727 int host_decrypt; 728 int host_decrypt;
729 int host_open_frag;
728 int ieee802_1x; /* is IEEE 802.1X used */ 730 int ieee802_1x; /* is IEEE 802.1X used */
729 731
730 /* WPA data */ 732 /* WPA data */
diff --git a/include/net/ieee80211_crypt.h b/include/net/ieee80211_crypt.h
index 536e9a9e6718..24e4912a263a 100644
--- a/include/net/ieee80211_crypt.h
+++ b/include/net/ieee80211_crypt.h
@@ -63,7 +63,8 @@ struct ieee80211_crypto_ops {
63 * extra_postfix_len; encrypt need not use all this space, but 63 * extra_postfix_len; encrypt need not use all this space, but
64 * the result must start at the beginning of the buffer and correct 64 * the result must start at the beginning of the buffer and correct
65 * length must be returned */ 65 * length must be returned */
66 int extra_prefix_len, extra_postfix_len; 66 int extra_mpdu_prefix_len, extra_mpdu_postfix_len;
67 int extra_msdu_prefix_len, extra_msdu_postfix_len;
67 68
68 struct module *owner; 69 struct module *owner;
69}; 70};