Enabling FreeBSD based WLAN ioctls, as those will become the future Haiku

WLAN ioctls anyway.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34802 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Colin Günther 2009-12-29 03:54:55 +00:00
parent e31bb3f634
commit f0f0db8b2a
1 changed files with 6 additions and 0 deletions

View File

@ -318,6 +318,12 @@ wlan_control(void* cookie, uint32 op, void* arg, size_t length)
return B_OK;
}
case SIOCG80211:
case SIOCS80211:
// Allowing FreeBSD based WLAN ioctls to pass, as those will become
// the future Haiku WLAN ioctls anyway.
return ifp->if_ioctl(ifp, op, (caddr_t)arg);
}
return B_BAD_VALUE;