Changeset 87
- Timestamp:
- 11/01/06 19:03:47 (2 years ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
mwnginject.c (modified) (2 diffs)
-
mwnginject.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/mwnginject.c
r86 r87 33 33 in_tx->setchan_callthrough = &wtinj_setchannel; 34 34 in_tx->txpacket_callthrough = &madwifing_send; 35 in_tx->setfuncmode_callthrough = NULL;35 in_tx->setfuncmode_callthrough = &madwifing_setfuncmode; 36 36 37 37 return 0; … … 97 97 } 98 98 99 int madwifing_setfuncmode(struct tx80211 *wtinj, int funcmode) 100 { 101 /* No functional mode setting on madwifi-ng, always return ok */ 102 return 0; 103 } 104 99 105 int madwifing_send(struct tx80211 *in_tx, struct tx80211_packet *in_pkt) 100 106 { -
trunk/mwnginject.h
r74 r87 100 100 int madwifing_devtype(struct tx80211 *in_tx, char *devtype); 101 101 int madwifing_send(struct tx80211 *in_tx, struct tx80211_packet *in_pkt); 102 int madwifing_setfuncmode(struct tx80211 *in_tx, int funcmode); 102 103 103 104 #endif
