summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/libwellenreiter/source/proto.cc
Side-by-side diff
Diffstat (limited to 'noncore/net/wellenreiter/libwellenreiter/source/proto.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/libwellenreiter/source/proto.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/noncore/net/wellenreiter/libwellenreiter/source/proto.cc b/noncore/net/wellenreiter/libwellenreiter/source/proto.cc
index 359bdb5..305f401 100644
--- a/noncore/net/wellenreiter/libwellenreiter/source/proto.cc
+++ b/noncore/net/wellenreiter/libwellenreiter/source/proto.cc
@@ -1,21 +1,21 @@
/*
- * Communication protocol
+ * Communication protocol
*
* $Id$
*/
#include "proto.hh"
#include "sock.hh"
/* Send found network to GUI */
int send_network_found (const char *guihost, int guiport, void *structure)
{
wl_network_t *ptr;
char buffer[2048];
- char temp[4];
+ char temp[5];
ptr = (wl_network_t *)structure;
memset(buffer, 0, 2048);
/* Type = Found new net */
@@ -53,15 +53,20 @@ int send_network_found (const char *guihost, int guiport, void *structure)
snprintf(temp, 4, "00%d", ptr->ssid_len);
else
snprintf(temp, 4, "0%d", ptr->ssid_len);
memcpy(buffer + 23, temp, 3);
+ fprintf( stderr, "Temp is %s\n", temp );
+ fprintf( stderr, "ssid_len is %d\n", ptr->ssid_len );
+
/* Set ssid */
memcpy(buffer + 26, ptr->bssid, ptr->ssid_len);
+ fprintf( stderr, "Buffer is %s\n", buffer );
+
/* Send prepared buffer to GUI */
sendcomm(guihost, guiport, buffer);
return 1;
}