author | mjm <mjm> | 2002-12-04 20:41:42 (UTC) |
---|---|---|
committer | mjm <mjm> | 2002-12-04 20:41:42 (UTC) |
commit | e5d01d8c3cf1d606e53684b6eccaf3ceaf6dea0b (patch) (unidiff) | |
tree | 3fd36924f0654d085cb455a1837cedc6612b8303 | |
parent | 1f70a97d8f4ccedbfdbde72e70649f01d92f190a (diff) | |
download | opie-e5d01d8c3cf1d606e53684b6eccaf3ceaf6dea0b.zip opie-e5d01d8c3cf1d606e53684b6eccaf3ceaf6dea0b.tar.gz opie-e5d01d8c3cf1d606e53684b6eccaf3ceaf6dea0b.tar.bz2 |
more debug
-rw-r--r-- | noncore/net/wellenreiter/libwellenreiter/source/sniff.cc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/noncore/net/wellenreiter/libwellenreiter/source/sniff.cc b/noncore/net/wellenreiter/libwellenreiter/source/sniff.cc index 66299d1..81eccab 100644 --- a/noncore/net/wellenreiter/libwellenreiter/source/sniff.cc +++ b/noncore/net/wellenreiter/libwellenreiter/source/sniff.cc | |||
@@ -107,29 +107,35 @@ void process_packets(const struct pcap_pkthdr *pkthdr, const unsigned char *pack | |||
107 | wl_net.net_type=2; | 107 | wl_net.net_type=2; |
108 | } | 108 | } |
109 | if (strcmp (pinfoptr->ssid,NONBROADCASTING) ==0) | 109 | if (strcmp (pinfoptr->ssid,NONBROADCASTING) ==0) |
110 | { | 110 | { |
111 | wl_loginfo("Net is a non-broadcasting network"); | 111 | wl_loginfo("Net is a non-broadcasting network"); |
112 | } | 112 | } |
113 | else | 113 | else |
114 | { | 114 | { |
115 | wl_loginfo("SSID is: %s", pinfoptr->ssid); | 115 | wl_loginfo("SSID is: %s", pinfoptr->ssid); |
116 | // wl_net.bssid=pinfoptr->ssid; | 116 | // wl_net.bssid=pinfoptr->ssid; |
117 | } | 117 | } |
118 | 118 | ||
119 | wl_loginfo("SSID length is: %d", pinfoptr->ssid_len); | ||
119 | wl_net.ssid_len=pinfoptr->ssid_len; | 120 | wl_net.ssid_len=pinfoptr->ssid_len; |
121 | |||
122 | wl_loginfo("Channel is: %d", pinfoptr->channel); | ||
120 | wl_net.channel=pinfoptr->channel; | 123 | wl_net.channel=pinfoptr->channel; |
121 | wl_net.wep=pinfoptr->cap_WEP; | 124 | wl_net.wep=pinfoptr->cap_WEP; |
122 | memcpy(wl_net.mac, pinfoptr->sndhwaddr, sizeof(wl_net.mac));; | 125 | |
123 | memcpy(wl_net.bssid, pinfoptr->ssid, sizeof(wl_net.bssid)); | 126 | wl_loginfo("Mac is: %s", pinfoptr->sndhwaddr); |
127 | memcpy(wl_net.mac, pinfoptr->sndhwaddr, sizeof(wl_net.mac)-1);; | ||
128 | wl_loginfo("SSID is: %s", pinfoptr->ssid); | ||
129 | memcpy(wl_net.bssid, pinfoptr->ssid, sizeof(wl_net.bssid)-1); | ||
124 | 130 | ||
125 | // printf ("\n\tDest : %s\n",pinfoptr->desthwaddr); | 131 | // printf ("\n\tDest : %s\n",pinfoptr->desthwaddr); |
126 | send_network_found((char *)guihost, guiport, &wl_net); | 132 | send_network_found((char *)guihost, guiport, &wl_net); |
127 | wl_loginfo("Sent network to GUI '%s:%d'", guihost, guiport); | 133 | wl_loginfo("Sent network to GUI '%s:%d'", guihost, guiport); |
128 | } | 134 | } |
129 | break; | 135 | break; |
130 | default: | 136 | default: |
131 | wl_logerr("Unknown IEEE802.11 frame subtype (%d)", FC_SUBTYPE(fc)); | 137 | wl_logerr("Unknown IEEE802.11 frame subtype (%d)", FC_SUBTYPE(fc)); |
132 | break; | 138 | break; |
133 | } /* End of switch over different mgt frame types */ | 139 | } /* End of switch over different mgt frame types */ |
134 | 140 | ||
135 | break; | 141 | break; |