author | mjm <mjm> | 2002-12-28 16:57:51 (UTC) |
---|---|---|
committer | mjm <mjm> | 2002-12-28 16:57:51 (UTC) |
commit | 6f71f59df05e634e59cd9ce44f785bd70429284a (patch) (unidiff) | |
tree | 54e11ac4a5e3c7d5d831de018b0f8734d6da783e | |
parent | d6fb3096228e13a3de41b1c888a154c4f9ec3f16 (diff) | |
download | opie-6f71f59df05e634e59cd9ce44f785bd70429284a.zip opie-6f71f59df05e634e59cd9ce44f785bd70429284a.tar.gz opie-6f71f59df05e634e59cd9ce44f785bd70429284a.tar.bz2 |
added memsets
-rw-r--r-- | noncore/net/wellenreiter/libwellenreiter/source/sniff.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/net/wellenreiter/libwellenreiter/source/sniff.cc b/noncore/net/wellenreiter/libwellenreiter/source/sniff.cc index 9b4e360..e516177 100644 --- a/noncore/net/wellenreiter/libwellenreiter/source/sniff.cc +++ b/noncore/net/wellenreiter/libwellenreiter/source/sniff.cc | |||
@@ -93,49 +93,52 @@ void process_packets(const struct pcap_pkthdr *pkthdr, const unsigned char *pack | |||
93 | pinfoptr->isvalid = 0; | 93 | pinfoptr->isvalid = 0; |
94 | return; | 94 | return; |
95 | } | 95 | } |
96 | 96 | ||
97 | /* Here should be the infos to the gui issued */ | 97 | /* Here should be the infos to the gui issued */ |
98 | if (pinfoptr->cap_ESS == 1 &&pinfoptr->cap_IBSS ==0) | 98 | if (pinfoptr->cap_ESS == 1 &&pinfoptr->cap_IBSS ==0) |
99 | { | 99 | { |
100 | wl_loginfo("Found an access point"); | 100 | wl_loginfo("Found an access point"); |
101 | wl_net.net_type=1; | 101 | wl_net.net_type=1; |
102 | } | 102 | } |
103 | else if(pinfoptr->cap_ESS == 0 && pinfoptr->cap_IBSS == 2) | 103 | else if(pinfoptr->cap_ESS == 0 && pinfoptr->cap_IBSS == 2) |
104 | { | 104 | { |
105 | wl_loginfo("Found an ad-hoc network"); | 105 | wl_loginfo("Found an ad-hoc network"); |
106 | wl_net.net_type=2; | 106 | wl_net.net_type=2; |
107 | } | 107 | } |
108 | 108 | ||
109 | memset(wl_net.bssid, 0, sizeof(wl_net.bssid)); | ||
110 | |||
109 | if (strcmp (pinfoptr->ssid,NONBROADCASTING) ==0) | 111 | if (strcmp (pinfoptr->ssid,NONBROADCASTING) ==0) |
110 | wl_loginfo("Net is a non-broadcasting network"); | 112 | wl_loginfo("Net is a non-broadcasting network"); |
111 | else | 113 | else |
112 | wl_loginfo("SSID is: %s", pinfoptr->ssid); | 114 | wl_loginfo("SSID is: %s", pinfoptr->ssid); |
113 | 115 | ||
114 | wl_loginfo("SSID is: %s", pinfoptr->ssid); | 116 | wl_loginfo("SSID is: %s", pinfoptr->ssid); |
115 | memcpy(wl_net.bssid, pinfoptr->ssid, sizeof(wl_net.bssid)-1); | 117 | memcpy(wl_net.bssid, pinfoptr->ssid, sizeof(wl_net.bssid)-1); |
116 | 118 | ||
117 | wl_loginfo("SSID length is: %d", pinfoptr->ssid_len); | 119 | wl_loginfo("SSID length is: %d", pinfoptr->ssid_len); |
118 | wl_net.ssid_len=pinfoptr->ssid_len; | 120 | wl_net.ssid_len=pinfoptr->ssid_len; |
119 | 121 | ||
120 | wl_loginfo("Channel is: %d", pinfoptr->channel); | 122 | wl_loginfo("Channel is: %d", pinfoptr->channel); |
121 | wl_net.channel=pinfoptr->channel; | 123 | wl_net.channel=pinfoptr->channel; |
122 | wl_net.wep=pinfoptr->cap_WEP; | 124 | wl_net.wep=pinfoptr->cap_WEP; |
123 | 125 | ||
124 | wl_loginfo("Mac is: %s", pinfoptr->sndhwaddr); | 126 | wl_loginfo("Mac is: %s", pinfoptr->sndhwaddr); |
125 | memcpy(wl_net.mac, pinfoptr->sndhwaddr, sizeof(wl_net.mac)-1);; | 127 | memset(wl_net.mac, 0, sizeof(wl_net.mac)); |
128 | memcpy(wl_net.mac, pinfoptr->sndhwaddr, sizeof(wl_net.mac)-1); | ||
126 | 129 | ||
127 | if(!send_network_found((char *)guihost, guiport, &wl_net)) | 130 | if(!send_network_found((char *)guihost, guiport, &wl_net)) |
128 | { | 131 | { |
129 | wl_logerr("Error sending data to UI: %s", strerror(errno)); | 132 | wl_logerr("Error sending data to UI: %s", strerror(errno)); |
130 | break; | 133 | break; |
131 | } | 134 | } |
132 | wl_loginfo("Sent network to GUI '%s:%d'", guihost, guiport); | 135 | wl_loginfo("Sent network to GUI '%s:%d'", guihost, guiport); |
133 | } | 136 | } |
134 | break; | 137 | break; |
135 | 138 | ||
136 | default: | 139 | default: |
137 | wl_logerr("Unknown IEEE802.11 frame subtype (%d)", FC_SUBTYPE(fc)); | 140 | wl_logerr("Unknown IEEE802.11 frame subtype (%d)", FC_SUBTYPE(fc)); |
138 | break; | 141 | break; |
139 | } /* End of switch over different mgt frame types */ | 142 | } /* End of switch over different mgt frame types */ |
140 | 143 | ||
141 | break; | 144 | break; |