author | max <max> | 2003-02-11 00:29:37 (UTC) |
---|---|---|
committer | max <max> | 2003-02-11 00:29:37 (UTC) |
commit | d426759d470699bd4320b23660f19dae639293d6 (patch) (unidiff) | |
tree | e9a0ff886e1b241d920e87ae3115594412a427e3 | |
parent | 0af800b30845a0d3df8be9db5c11c06fd81386e7 (diff) | |
download | opie-d426759d470699bd4320b23660f19dae639293d6.zip opie-d426759d470699bd4320b23660f19dae639293d6.tar.gz opie-d426759d470699bd4320b23660f19dae639293d6.tar.bz2 |
Wlan-ng chanswitch
-rw-r--r-- | noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc b/noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc index 29dcc75..8c94cb1 100644 --- a/noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc +++ b/noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc | |||
@@ -36,26 +36,27 @@ int card_into_monitormode (pcap_t **orighandle, char *device, int cardtype) | |||
36 | if((CISCO_CONFIG_FILE = fopen(CiscoRFMON,"w")) == NULL) | 36 | if((CISCO_CONFIG_FILE = fopen(CiscoRFMON,"w")) == NULL) |
37 | { | 37 | { |
38 | wl_logerr("Cannot open config file: %s", strerror(errno)); | 38 | wl_logerr("Cannot open config file: %s", strerror(errno)); |
39 | return 0; | 39 | return 0; |
40 | } | 40 | } |
41 | fputs ("Mode: r",CISCO_CONFIG_FILE); | 41 | fputs ("Mode: r",CISCO_CONFIG_FILE); |
42 | fputs ("Mode: y",CISCO_CONFIG_FILE); | 42 | fputs ("Mode: y",CISCO_CONFIG_FILE); |
43 | fputs ("XmitPower: 1",CISCO_CONFIG_FILE); | 43 | fputs ("XmitPower: 1",CISCO_CONFIG_FILE); |
44 | fclose(CISCO_CONFIG_FILE); | 44 | fclose(CISCO_CONFIG_FILE); |
45 | } | 45 | } |
46 | else if (cardtype == CARD_TYPE_NG) | 46 | else if (cardtype == CARD_TYPE_NG) |
47 | { | 47 | { |
48 | char wlanngcmd[62]; | 48 | char wlanngcmd[80]; |
49 | snprintf(wlanngcmd, sizeof(wlanngcmd) - 1, "$(which wlanctl-ng) %s lnxreq_wlansniff channel=%d enable=true", device, 1); | 49 | snprintf(wlanngcmd, sizeof(wlanngcmd) - 1, "$(which wlanctl-ng) %s lnxreq_wlansniff channel=%d enable=true", device, 1); |
50 | printf ("\n %s",wlanngcmd); | ||
50 | if (system(wlanngcmd) != 0) | 51 | if (system(wlanngcmd) != 0) |
51 | { | 52 | { |
52 | wl_logerr("Could not set %s in raw mode, check cardtype", device); | 53 | wl_logerr("Could not set %s in raw mode, check cardtype", device); |
53 | return 0; | 54 | return 0; |
54 | } | 55 | } |
55 | } | 56 | } |
56 | else if (cardtype == CARD_TYPE_HOSTAP) | 57 | else if (cardtype == CARD_TYPE_HOSTAP) |
57 | { | 58 | { |
58 | wl_logerr("Got a host-ap card, nothing is implemented now"); | 59 | wl_logerr("Got a host-ap card, nothing is implemented now"); |
59 | char hostapcmd[250]; | 60 | char hostapcmd[250]; |
60 | snprintf(hostapcmd, sizeof(hostapcmd) -1, "$(which iwpriv) %s monitor 2 %d", device,1); | 61 | snprintf(hostapcmd, sizeof(hostapcmd) -1, "$(which iwpriv) %s monitor 2 %d", device,1); |
61 | if (system(hostapcmd) !=0) | 62 | if (system(hostapcmd) !=0) |
@@ -152,27 +153,27 @@ int card_set_promisc_up (const char *device) | |||
152 | } | 153 | } |
153 | else | 154 | else |
154 | { | 155 | { |
155 | wl_logerr("Could not set promisc flag on %d", device); | 156 | wl_logerr("Could not set promisc flag on %d", device); |
156 | close(fd); | 157 | close(fd); |
157 | return 0; | 158 | return 0; |
158 | } | 159 | } |
159 | } | 160 | } |
160 | 161 | ||
161 | /* Set channel (Wireless frequency) of the device */ | 162 | /* Set channel (Wireless frequency) of the device */ |
162 | int card_set_channel (const char *device, int channel, int cardtype) | 163 | int card_set_channel (const char *device, int channel, int cardtype) |
163 | { | 164 | { |
164 | if (cardtype == CARD_TYPE_CISCO) | 165 | if (cardtype == CARD_TYPE_CISCO || cardtype == CARD_TYPE_NG) |
165 | { | 166 | { |
166 | /* Cisco cards don't need channelswitching */ | 167 | /* Cisco and wlan-ng drivers don't need channelswitching */ |
167 | return 1; | 168 | return 1; |
168 | } | 169 | } |
169 | /* If it is a lucent orinocco card */ | 170 | /* If it is a lucent orinocco card */ |
170 | else if (cardtype == CARD_TYPE_ORINOCCO || cardtype == CARD_TYPE_HOSTAP) | 171 | else if (cardtype == CARD_TYPE_ORINOCCO || cardtype == CARD_TYPE_HOSTAP) |
171 | { | 172 | { |
172 | int fd; | 173 | int fd; |
173 | //Wireless tools structure for the iocalls | 174 | //Wireless tools structure for the iocalls |
174 | struct iwreq ireq; | 175 | struct iwreq ireq; |
175 | int *ptr; | 176 | int *ptr; |
176 | /* Socket needed to use the iocall to */ | 177 | /* Socket needed to use the iocall to */ |
177 | fd = socket(AF_INET, SOCK_STREAM, 0); | 178 | fd = socket(AF_INET, SOCK_STREAM, 0); |
178 | 179 | ||
@@ -190,27 +191,16 @@ int card_set_channel (const char *device, int channel, int cardtype) | |||
190 | close(fd); | 191 | close(fd); |
191 | wl_loginfo("Set channel %d on interface %s",channel, device); | 192 | wl_loginfo("Set channel %d on interface %s",channel, device); |
192 | return 1; | 193 | return 1; |
193 | } | 194 | } |
194 | else | 195 | else |
195 | { | 196 | { |
196 | /* iocall does not work */ | 197 | /* iocall does not work */ |
197 | close(fd); | 198 | close(fd); |
198 | wl_logerr("Could not set channel %d on %s, check cardtype",channel, device); | 199 | wl_logerr("Could not set channel %d on %s, check cardtype",channel, device); |
199 | return 0; | 200 | return 0; |
200 | } | 201 | } |
201 | } | 202 | } |
202 | else if (cardtype == CARD_TYPE_NG) | ||
203 | { | ||
204 | char wlanngcmd[62]; | ||
205 | snprintf(wlanngcmd, sizeof(wlanngcmd) - 1, "$(which wlanctl-ng) %s lnxreq_wlansniff channel=%d enable=true", device, channel); | ||
206 | if (system(wlanngcmd) != 0) | ||
207 | { | ||
208 | wl_logerr("Could not set channel %d on %s, check cardtype",channel, device); | ||
209 | return 0; | ||
210 | } | ||
211 | |||
212 | } | ||
213 | /* For undefined situations */ | 203 | /* For undefined situations */ |
214 | return 0; | 204 | return 0; |
215 | } | 205 | } |
216 | 206 | ||