author | mickeyl <mickeyl> | 2003-02-12 22:38:17 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-02-12 22:38:17 (UTC) |
commit | 4c0fca7a9a99be7b6aad58e93f7a2d99f74b236c (patch) (unidiff) | |
tree | 13201d8d8d5d832c0b3ab17ffdfe732261609a89 | |
parent | dc326e87d4a958ee49210fff9d03967f8a183242 (diff) | |
download | opie-4c0fca7a9a99be7b6aad58e93f7a2d99f74b236c.zip opie-4c0fca7a9a99be7b6aad58e93f7a2d99f74b236c.tar.gz opie-4c0fca7a9a99be7b6aad58e93f7a2d99f74b236c.tar.bz2 |
fix compilation on systems with wireless extensions < V15
-rw-r--r-- | noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc b/noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc index 626b28c..e5a20d6 100644 --- a/noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc +++ b/noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc | |||
@@ -54,10 +54,11 @@ int card_into_monitormode (pcap_t **orighandle, const char *device, int cardtype | |||
54 | } | 54 | } |
55 | } | 55 | } |
56 | else if (cardtype == CARD_TYPE_HOSTAP) | 56 | else if (cardtype == CARD_TYPE_HOSTAP) |
57 | { | 57 | { |
58 | int skfd; | 58 | #if WIRELESS_EXT < 14 |
59 | skfd = socket(AF_INET, SOCK_STREAM, 0); | 59 | int skfd; |
60 | skfd = socket(AF_INET, SOCK_STREAM, 0); | ||
60 | struct iwreq wrq; | 61 | struct iwreq wrq; |
61 | wrq.u.mode = IW_MODE_MONITOR; | 62 | wrq.u.mode = IW_MODE_MONITOR; |
62 | 63 | ||
63 | if(iw_set_ext(skfd,(char *) device,SIOCSIWMODE,&wrq)<0) | 64 | if(iw_set_ext(skfd,(char *) device,SIOCSIWMODE,&wrq)<0) |
@@ -70,8 +71,12 @@ int card_into_monitormode (pcap_t **orighandle, const char *device, int cardtype | |||
70 | wl_loginfo("Successfully set hostap card %s into raw mode",device); | 71 | wl_loginfo("Successfully set hostap card %s into raw mode",device); |
71 | return 1; | 72 | return 1; |
72 | } | 73 | } |
73 | return 1; | 74 | return 1; |
75 | #else | ||
76 | #warning Hi _MAX_, please use a system call for hostap with wireless extensions < 14 | ||
77 | // TODO: Implement switching HOSTAP into monitor mode with system call | ||
78 | #endif | ||
74 | } | 79 | } |
75 | else if (cardtype == CARD_TYPE_ORINOCCO ) | 80 | else if (cardtype == CARD_TYPE_ORINOCCO ) |
76 | { | 81 | { |
77 | if (!card_set_channel (device, 1, CARD_TYPE_ORINOCCO)) | 82 | if (!card_set_channel (device, 1, CARD_TYPE_ORINOCCO)) |