/* This file is part of lorcon lorcon 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. lorcon 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 lorcon; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Copyright (c) 2005 dragorn and Joshua Wright */ #ifndef __WTINJECT_H__ #define __WTINJECT_H__ #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef SYS_LINUX #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_LINUX_WIRELESS #include #include #else #include #endif #include #include #define ETH_P_80211_RAW (ETH_P_ECONET + 1) #include "iwcontrol.h" #include "tx80211.h" int wtinj_send(struct tx80211 *wtinj, struct tx80211_packet *in_pkt); int wtinj_open(struct tx80211 *wtinj); int wtinj_close(struct tx80211 *wtinj); int wtinj_setchannel(struct tx80211 *wtinj, int channel); int wtinj_getchannel(struct tx80211 *wtinj); int wtinj_setmode(struct tx80211 *wtinj, int mode); int wtinj_getmode(struct tx80211 *wtinj); int wtinj_setfuncmode(struct tx80211 *wtinj, int funcmode); int wtinj_selfack(struct tx80211 *wtinj, uint8_t *addr); #endif /* linux */ #endif