-rw-r--r-- | libopie2/opienet/onetwork.h | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/libopie2/opienet/onetwork.h b/libopie2/opienet/onetwork.h index 00d1ebb..b170ea2 100644 --- a/libopie2/opienet/onetwork.h +++ b/libopie2/opienet/onetwork.h @@ -21,62 +21,46 @@ _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU ..}^=.= = ; Library General Public License for more ++= -. .` .: details. : = ...= . :.=- -. .:....=;==+<; You should have received a copy of the GNU -_. . . )=. = Library General Public License along with -- :-=` this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef ONETWORK_H #define ONETWORK_H +#include "wireless.h" + /* OPIE */ #include <opie2/onetutils.h> /* QT */ #include <qvaluelist.h> #include <qdict.h> #include <qmap.h> #include <qobject.h> #include <qhostaddress.h> -// ML: Yeah, I hate to include kernel headers, but it's necessary here -// ML: Here comes an ugly hack to prevent <linux/wireless.h> including <linux/if.h> -// ML: which conflicts with the user header <net/if.h> -// ML: We really need a user header for the Wireless Extensions, something like <net/wireless.h> -// ML: I will drop Jean a mail on that subject - -#include <net/if.h> - -#ifndef IFNAMSIZ -#define IFNAMSIZ 16 -#endif -#ifndef IW_MAX_PRIV_DEF -#define IW_MAX_PRIV_DEF 128 -#endif - -#define _LINUX_IF_H -#include <linux/wireless.h> - class ONetworkInterface; class OWirelessNetworkInterface; class OChannelHopper; class OMonitoringInterface; /*====================================================================================== * ONetwork *======================================================================================*/ /** * @brief A container class for all network interfaces * * This class provides access to all available network interfaces of your computer. * * @author Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de> */ |