diff options
author | James Ketrenos <jketreno@linux.intel.com> | 2005-09-21 12:58:49 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-09-22 15:39:41 -0400 |
commit | 31b59eaee8f8ec29d8cb6ac0c8eed086689d8030 (patch) | |
tree | 5ab119a07e98aaf623dc8ce6f04f7b3403b6b971 /include/net/ieee80211_crypt.h | |
parent | 31696160c7415b5a7efa650c7f1ca5c9623f5d8f (diff) |
[PATCH] ieee80211: Added handle_deauth() callback, enhanced tkip/ccmp support of varying hw/sw offload
tree de81b55e78e85997642c651ea677078d0554a14f
parent c8030da8c159f8b82712172a6748a42523aea83a
author James Ketrenos <jketreno@linux.intel.com> 1127104380 -0500
committer James Ketrenos <jketreno@linux.intel.com> 1127315225 -0500
Added handle_deauth() callback.
Enhanced crypt_{tkip,ccmp} to support varying splits of HW/SW offload.
Changed channel freq to u32 from u16.
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'include/net/ieee80211_crypt.h')
-rw-r--r-- | include/net/ieee80211_crypt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/ieee80211_crypt.h b/include/net/ieee80211_crypt.h index 24e4912a263a..daf3b2c6b038 100644 --- a/include/net/ieee80211_crypt.h +++ b/include/net/ieee80211_crypt.h | |||
@@ -36,6 +36,8 @@ struct ieee80211_crypto_ops { | |||
36 | /* deinitialize crypto context and free allocated private data */ | 36 | /* deinitialize crypto context and free allocated private data */ |
37 | void (*deinit) (void *priv); | 37 | void (*deinit) (void *priv); |
38 | 38 | ||
39 | int (*build_iv) (struct sk_buff * skb, int hdr_len, void *priv); | ||
40 | |||
39 | /* encrypt/decrypt return < 0 on error or >= 0 on success. The return | 41 | /* encrypt/decrypt return < 0 on error or >= 0 on success. The return |
40 | * value from decrypt_mpdu is passed as the keyidx value for | 42 | * value from decrypt_mpdu is passed as the keyidx value for |
41 | * decrypt_msdu. skb must have enough head and tail room for the | 43 | * decrypt_msdu. skb must have enough head and tail room for the |