mirror of https://github.com/proski/madwifi
Fix typos
git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@4125 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
parent
5e195288a9
commit
0382a636d6
2
README
2
README
|
@ -199,7 +199,7 @@ To create APs that share a single MAC address, just create the VAPs:
|
|||
wlanconfig ath0 create wlandev wifi0 wlanmode ap
|
||||
wlanconfig ath1 create wlandev wifi0 wlanmode ap
|
||||
|
||||
To create an VAP with a unique MAC addresss, use the bssid parameter:
|
||||
To create an VAP with a unique MAC address, use the bssid parameter:
|
||||
|
||||
wlanconfig ath0 create wlandev wifi0 wlanmode ap
|
||||
wlanconfig ath1 create wlandev wifi0 wlanmode ap bssid
|
||||
|
|
|
@ -209,7 +209,7 @@ ccmp_encap(struct ieee80211_key *k, struct sk_buff *skb, u_int8_t keyid)
|
|||
ivp[7] = k->wk_keytsc >> 40; /* PN5 */
|
||||
|
||||
/*
|
||||
* Finally, do software encrypt if neeed.
|
||||
* Finally, do software encrypt if needed.
|
||||
*/
|
||||
if ((k->wk_flags & IEEE80211_KEY_SWCRYPT) &&
|
||||
!ccmp_encrypt(k, skb, hdrlen))
|
||||
|
|
|
@ -188,7 +188,7 @@ tkip_encap(struct ieee80211_key *k, struct sk_buff *skb, u_int8_t keyid)
|
|||
ivp[7] = k->wk_keytsc >> 40; /* TSC5 */
|
||||
|
||||
/*
|
||||
* Finally, do software encrypt if neeed.
|
||||
* Finally, do software encrypt if needed.
|
||||
*/
|
||||
if (k->wk_flags & IEEE80211_KEY_SWCRYPT) {
|
||||
if (!tkip_encrypt(ctx, k, skb, hdrlen))
|
||||
|
|
|
@ -185,7 +185,7 @@ wep_encap(struct ieee80211_key *k, struct sk_buff *skb, u_int8_t keyid)
|
|||
ivp[3] = keyid;
|
||||
|
||||
/*
|
||||
* Finally, do software encrypt if neeed.
|
||||
* Finally, do software encrypt if needed.
|
||||
*/
|
||||
if ((k->wk_flags & IEEE80211_KEY_SWCRYPT) &&
|
||||
!wep_encrypt(k, skb, hdrlen))
|
||||
|
|
|
@ -114,7 +114,7 @@ struct ieee80211_node {
|
|||
u_int8_t ni_ath_flags; /* Atheros feature flags */
|
||||
/* NB: These must have the same values as IEEE80211_ATHC_* */
|
||||
#define IEEE80211_NODE_TURBOP 0x0001 /* Turbo prime enable */
|
||||
#define IEEE80211_NODE_COMP 0x0002 /* Compresssion enable */
|
||||
#define IEEE80211_NODE_COMP 0x0002 /* Compression enable */
|
||||
#define IEEE80211_NODE_FF 0x0004 /* Fast Frame capable */
|
||||
#define IEEE80211_NODE_XR 0x0008 /* Atheros WME enable */
|
||||
#define IEEE80211_NODE_AR 0x0010 /* AR capable */
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
* These are taken from ieee80211_node.h
|
||||
*/
|
||||
#define IEEE80211_NODE_TURBOP 0x0001 /* Turbo prime enable */
|
||||
#define IEEE80211_NODE_COMP 0x0002 /* Compresssion enable */
|
||||
#define IEEE80211_NODE_COMP 0x0002 /* Compression enable */
|
||||
#define IEEE80211_NODE_FF 0x0004 /* Fast Frame capable */
|
||||
#define IEEE80211_NODE_XR 0x0008 /* Atheros WME enable */
|
||||
#define IEEE80211_NODE_AR 0x0010 /* AR capable */
|
||||
|
|
Loading…
Reference in New Issue