[Bug 459716] Re: encrypted modes don't work on ndiswrapper wireless adapters
Rene van Paassen
rene.vanpaassen at gmail.com
Tue Dec 1 23:23:28 UTC 2009
I dug a bit deeper, created a patch, and filed a bug report for
ndiswrapper too.
Patch is:
diff --git a/iw_ndis.c b/iw_ndis.c
index 434260e..3f5e12c 100644
--- a/iw_ndis.c
+++ b/iw_ndis.c
@@ -1591,6 +1591,12 @@ static int iw_set_auth(struct net_device *dev,
if (wrqu->param.value)
deauthenticate(wnd);
break;
+ case IW_AUTH_MFP:
+ if (wrqu->param.value == IW_AUTH_MFP_DISABLED ||
+ wrqu->param.value == IW_AUTH_MFP_OPTIONAL)
+ break;
+ WARNING("MFP not implemented");
+ return -EOPNOTSUPP;
case IW_AUTH_TKIP_COUNTERMEASURES:
case IW_AUTH_DROP_UNENCRYPTED:
case IW_AUTH_RX_UNENCRYPTED_EAPOL:
Am currently testing; if you see this bug report it works
--
encrypted modes don't work on ndiswrapper wireless adapters
https://bugs.launchpad.net/bugs/459716
You received this bug notification because you are a member of Kernel
Bugs, which is subscribed to ndiswrapper in ubuntu.
More information about the kernel-bugs
mailing list