| project home | /[freewrt]/branches/freewrt_1_0/package/madwifi/patches/patch-net80211_ieee80211_var_h |
Parent Directory
|
Revision Log
Madwifi (fixing bug: #155): - downgraded to 0.9.2.1, because in 0.9.3.x the madwifi kernel module oopses in monitor mode. - applied debian's security fixed for 0.9.2.1, because every unpatched version before 0.9.3.1 is vulnerable to three knows security issues (see madwifi.org). - converted four manual patches to the freewrt patch format - thx to shorty for sending a one-liner fix in the Makefile for 0.9.2.1 Aiccu (fixing a bug reported via the xen-users ml by Frank Matthiess): - merged fix from trunk rev #2881 for fixing a bug regarding a broken IP Header in the aiccu packets. Broadcom-wl-util (fixing bug: #334): - qouted the wpa password in the if-<pre>up.d scripts. hopefully this fixes this bug. Until now I only checked that it doesn't brake something that was already working before. Freeradius (fixing bug: #321): - the init.d script now exports the correct library path before radiusd is started. otherwise the daemon fails in certain setups because some libraries cannot be found. thx to tg for this fix. License: - updated the license file to refelect the current developer team. the names and the alphabetic order has been "stolen" by me from http://www.freewrt.org/trac/wiki/Development/Developers
| 1 | $FreeWRT$ |
| 2 | --- madwifi-0.9.2.1.orig/net80211/ieee80211_var.h 2006-07-06 05:23:08.000000000 +0200 |
| 3 | +++ madwifi-0.9.2.1/net80211/ieee80211_var.h 2007-06-26 18:54:01.000000000 +0200 |
| 4 | @@ -60,9 +60,15 @@ |
| 5 | #define IEEE80211_DTIM_MIN 1 /* min DTIM period */ |
| 6 | #define IEEE80211_DTIM_DEFAULT 1 /* default DTIM period */ |
| 7 | |
| 8 | -#define IEEE80211_BINTVAL_MAX 500 /* max beacon interval (TU's) */ |
| 9 | +#define IEEE80211_BINTVAL_MAX 1000 /* max beacon interval (TU's) */ |
| 10 | #define IEEE80211_BINTVAL_MIN 25 /* min beacon interval (TU's) */ |
| 11 | #define IEEE80211_BINTVAL_DEFAULT 100 /* default beacon interval (TU's) */ |
| 12 | +#define IEEE80211_BINTVAL_VALID(_bi) \ |
| 13 | + ((IEEE80211_BINTVAL_MIN <= (_bi)) && \ |
| 14 | + ((_bi) <= IEEE80211_BINTVAL_MAX)) |
| 15 | +#define IEEE80211_BINTVAL_SANITISE(_bi) \ |
| 16 | + (IEEE80211_BINTVAL_VALID(_bi) ? \ |
| 17 | + (_bi) : IEEE80211_BINTVAL_DEFAULT) |
| 18 | |
| 19 | #define IEEE80211_BGSCAN_INTVAL_MIN 15 /* min bg scan intvl (secs) */ |
| 20 | #define IEEE80211_BGSCAN_INTVAL_DEFAULT (5*60) /* default bg scan intvl */ |
| root@freewrt.org:443 | ViewVC Help |
| Powered by ViewVC 1.1.20 |