-rw-r--r-- | noncore/net/wellenreiter/daemon/source/cardmode.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/net/wellenreiter/daemon/source/cardmode.cc b/noncore/net/wellenreiter/daemon/source/cardmode.cc index ae32af4..f84ce23 100644 --- a/noncore/net/wellenreiter/daemon/source/cardmode.cc +++ b/noncore/net/wellenreiter/daemon/source/cardmode.cc | |||
@@ -36,18 +36,18 @@ int card_into_monitormode (char *device, int cardtype) | |||
36 | fclose(CISCO_CONFIG_FILE); | 36 | fclose(CISCO_CONFIG_FILE); |
37 | } | 37 | } |
38 | else if (cardtype == CARD_TYPE_NG) | 38 | else if (cardtype == CARD_TYPE_NG) |
39 | { | 39 | { |
40 | char wlanngcmd[62]; | 40 | char wlanngcmd[62]; |
41 | snprintf(wlanngcmd, sizeof(wlanngcmd),"%s %s lnxreq_wlansniff channel=1 enable=true",WLANCTL_PATH,device); | 41 | snprintf(wlanngcmd, sizeof(wlanngcmd),"%s %s lnxreq_wlansniff channel=1 enable=true",WLANCTL_PATH,device); |
42 | if (system (wlanngcmd) != 0) | 42 | if (system (wlanngcmd) != 0) |
43 | { | 43 | { |
44 | printf ("\n Fatal error could not set %s in raw mode, check cardtype\n",device); | 44 | printf ("\n Fatal error could not set %s in raw mode, check cardtype\n\n\tterminating now...\n\n",device); |
45 | return 0; | 45 | exit(1); |
46 | } | 46 | } |
47 | } | 47 | } |
48 | else if (cardtype == CARD_TYPE_HOSTAP) | 48 | else if (cardtype == CARD_TYPE_HOSTAP) |
49 | { | 49 | { |
50 | printf ("Got a host-ap card, nothing is implemented now\n"); | 50 | printf ("Got a host-ap card, nothing is implemented now\n"); |
51 | } | 51 | } |
52 | 52 | ||
53 | 53 | ||
@@ -61,19 +61,19 @@ int card_into_monitormode (char *device, int cardtype) | |||
61 | { | 61 | { |
62 | printf ("Your successfully listen on %s in 802.11 raw mode\n",device); | 62 | printf ("Your successfully listen on %s in 802.11 raw mode\n",device); |
63 | pcap_close(handle); | 63 | pcap_close(handle); |
64 | return 0; | 64 | return 0; |
65 | 65 | ||
66 | } | 66 | } |
67 | else | 67 | else |
68 | { | 68 | { |
69 | printf ("Fatal error, cannot continue, your interface %s does not work in the correct 802.11 raw mode, check you driver please\n",device); | 69 | printf ("Fatal error, cannot continue, your interface %s does not work in the correct 802.11 raw mode, check you driver please\n\tterminating now",device); |
70 | pcap_close(handle); | 70 | pcap_close(handle); |
71 | return 0; | 71 | exit(1); |
72 | } | 72 | } |
73 | } | 73 | } |
74 | 74 | ||
75 | 75 | ||
76 | 76 | ||
77 | int card_set_promisc_up (char * device) | 77 | int card_set_promisc_up (char * device) |
78 | { | 78 | { |
79 | int ret; | 79 | int ret; |