RFC airo : wpa support

2007-05-04 Thread matthieu castet
n Index: airo.c === --- airo.c (revision 16) +++ airo.c (working copy) @@ -16,6 +16,7 @@ Code was also integrated from the Cisco Aironet driver for Linux. Support for MPI350 cards was added by Fabrice Bellet <[EMAIL PROTECTED]>. +(C) 2005-2007 Matthieu CASTET <[EMAIL PRO

Re: [patch 1/2]d80211: hardware TKIP support for ipw3945

2006-10-21 Thread Matthieu CASTET
On Fri, 20 Oct 2006 17:19:36 +0800, Hong Liu wrote: > ipw3945 TKIP hwcrypto only support RC4 encryption, > so the stack needs to pre compute the michael MIC and the RC4key > for it. I suppose the hw doesn't do any hardware mic for the RX path. It believe it should be also added. - To unsubscribe

[PATH] Allow mtu bigger than 1500 for ieee80211

2006-09-28 Thread matthieu castet
Hi this patch allow to set the mtu between 1500 and 2304 (max octets in an MSDU) for devices using ieee80211 linux stack. Signed-off-by: Matthieu CASTET <[EMAIL PROTECTED]> Index: linux/net/ieee80211/ieee80211_mo

Re: softmac mtu

2006-09-28 Thread matthieu castet
Johannes Berg wrote: On Wed, 2006-09-27 at 19:17 +0200, matthieu castet wrote: 2304, I think, as that's synonym sMaxMsduLng Integer = 2304; /* max octets in an MSDU */ Yes but if it is bigger the frame get framented at the 802.11 layer : in theory we could put mtu (IP max packet si

Re: softmac mtu

2006-09-27 Thread matthieu castet
Johannes Berg wrote: On Wed, 2006-09-27 at 15:57 +0200, [EMAIL PROTECTED] wrote: Also I wonder what should be the max mtu. 2304, I think, as that's synonym sMaxMsduLng Integer = 2304; /* max octets in an MSDU */ Yes but if it is bigger the frame get framented at the 802.11 layer : in th

Re: softmac mtu

2006-09-25 Thread Matthieu CASTET
So why a special mtu handler is not implemented in 802.11 stack : - 802.11 stack doesn't support bigger packet - 802.11 stack doesn't support very bigger packet (with 802.11 fragmentation) - 802.11 writers were lazy Matthieu - To unsubscribe from this list: send the line "unsubscribe netdev" in t

Re: kernel: TKIP: replay detected:

2006-09-25 Thread Matthieu CASTET
Hi, On Mon, 25 Sep 2006 10:50:00 -0400, John W. Linville wrote: > On Sun, Sep 24, 2006 at 12:40:53PM +0200, Elimar Riesebieter wrote: > >> My sylog is filled up with thousands of: >> Sep 21 18:18:00 aragorn kernel: TKIP: replay detected: \ >> STA=XX:XX:BB:LL:KK:00 previous TSC BLAa recei

softmac mtu

2006-09-23 Thread Matthieu CASTET
Hi, why softmac (and maybe device using linux 80211 stack) can't increase their mtu above 1500 ? IRRC 802.11 allow to send bigger frame. Moreover some driver like airo allow to use mtu biger than 2000. thanks, Matthieu - To unsubscribe from this list: send the line "unsubscribe netdev" in the

softmac mtu

2006-09-23 Thread Matthieu CASTET
Hi, why softmac (and maybe device using linux 80211 stack) can't increase their mtu above 1500 ? IRRC 802.11 allow to send bigger frame. Moreover some driver like airo allow to use mtu biger than 2000. thanks, Matthieu - To unsubscribe from this list: send the line "unsubscribe netdev" in the

Re: [Announce] Intel PRO/Wireless 3945ABG Network Connection

2006-02-25 Thread matthieu castet
Hi, John Stoffel wrote: "Matthieu" == Matthieu CASTET <[EMAIL PROTECTED]> writes: Matthieu> I will say, why not put the restriction of the firmware Matthieu> binary blob ? It run on the device so it will be difficult Matthieu> for people to analyse it. So what

Re: [Announce] Intel PRO/Wireless 3945ABG Network Connection

2006-02-25 Thread Matthieu CASTET
Hi everybody, Le Sat, 25 Feb 2006 15:19:40 +0100, Jan Engelhardt a écrit : >>If the modules crc changes, >>it must do an instant disable of the transmitter functions and exit or >>crash, thereby precluding any 'hot rodding' of the chipset. >> > Would not it be easiest to have the chipset enforc

Re: [test] airo : first WPA-PSK support

2006-02-07 Thread matthieu castet
Dan Williams wrote: AFAIK anything less than 5.40.x doesn't work anyway. The latest stuff (5.60.x) has worked fine. I previously had 5.30.17, which tended to hang the card after a while. Anyway, perhaps we require people to update their firmware. Not sure. What's the minimum firmware versio

Re: [test] airo : first WPA-PSK support

2006-02-06 Thread matthieu castet
Hi, Dan Williams wrote: I can help out with the mpi350 if you'd like. However, most of the code for the MPI350 should be exactly the same as with the PCMCIA version of the card. They share just about everything except for the bus type. (unless I'm wrong?) There are some differences for RX and

Re: [test] airo : first WPA-PSK support

2006-02-06 Thread matthieu castet
Hi, matthieu castet wrote: Hi, I have a working linux airo driver that support WPA-PSK, but it is very ugly. It only support one card, and don't support MPI350. Also it only works with WPA. Currently the RX and TX key are set only for set_tx=1 key. The card should report valid mi

Re: [PATCH] airo : reset card in init

2005-11-18 Thread matthieu castet
Hi, Jeff Garzik wrote: matthieu castet wrote: Hi, without this patch after an rmmod, modprobe the card won't work anymore until the next reboot. This patch seem safe to apply for all cards as the bsd driver already do that. I had to add a timeout because strange things h