/* This file is part of Kismet Kismet is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. Kismet is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Kismet; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __IFCONTROL_H__ #define __IFCONTROL_H__ #include "config.h" #include #include #include #include #ifdef SYS_LINUX #include #include #include #include #include #include #include #ifdef HAVE_LINUX_WIRELESS // Because some kernels include ethtool which breaks horribly... // The stock ones don't but others seem to typedef unsigned char u8; typedef unsigned short u16; typedef unsigned int u32; typedef unsigned long u64; #include #endif #endif #include "util.h" #ifdef SYS_LINUX int Ifconfig_Set_Flags(const char *in_dev, char *errstr, short flags); int Ifconfig_Delta_Flags(const char *in_dev, char *errstr, short flags); int Ifconfig_Get_Flags(const char *in_dev, char *errstr, short *flags); int Ifconfig_Get_Hwaddr(const char *in_dev, char *errstr, uint8_t *ret_hwaddr); int Ifconfig_Set_Hwaddr(const char *in_dev, char *errstr, uint8_t *in_hwaddr); int Ifconfig_Set_MTU(const char *in_dev, char *errstr, uint16_t in_mtu); #endif #endif