summaryrefslogtreecommitdiff
path: root/noncore
authormjm <mjm>2002-12-04 20:41:42 (UTC)
committer mjm <mjm>2002-12-04 20:41:42 (UTC)
commite5d01d8c3cf1d606e53684b6eccaf3ceaf6dea0b (patch) (unidiff)
tree3fd36924f0654d085cb455a1837cedc6612b8303 /noncore
parent1f70a97d8f4ccedbfdbde72e70649f01d92f190a (diff)
downloadopie-e5d01d8c3cf1d606e53684b6eccaf3ceaf6dea0b.zip
opie-e5d01d8c3cf1d606e53684b6eccaf3ceaf6dea0b.tar.gz
opie-e5d01d8c3cf1d606e53684b6eccaf3ceaf6dea0b.tar.bz2
more debug
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/libwellenreiter/source/sniff.cc10
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
@@ -116,11 +116,17 @@ void process_packets(const struct pcap_pkthdr *pkthdr, const unsigned char *pack
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);