author | mickeyl <mickeyl> | 2002-12-04 21:23:17 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2002-12-04 21:23:17 (UTC) |
commit | eadf7c4aed6ff281f418a7a3b315fd59f001617a (patch) (unidiff) | |
tree | a46170b6634f542d595a104062fd0a9dcd76be6f | |
parent | e5d01d8c3cf1d606e53684b6eccaf3ceaf6dea0b (diff) | |
download | opie-eadf7c4aed6ff281f418a7a3b315fd59f001617a.zip opie-eadf7c4aed6ff281f418a7a3b315fd59f001617a.tar.gz opie-eadf7c4aed6ff281f418a7a3b315fd59f001617a.tar.bz2 |
more debugging info for our debugging session...
-rw-r--r-- | noncore/net/wellenreiter/libwellenreiter/source/proto.cc | 9 |
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,31 +1,31 @@ | |||
1 | /* | 1 | /* |
2 | * Communication protocol | 2 | * Communication protocol |
3 | * | 3 | * |
4 | * $Id$ | 4 | * $Id$ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include "proto.hh" | 7 | #include "proto.hh" |
8 | #include "sock.hh" | 8 | #include "sock.hh" |
9 | 9 | ||
10 | /* Send found network to GUI */ | 10 | /* Send found network to GUI */ |
11 | int send_network_found (const char *guihost, int guiport, void *structure) | 11 | int send_network_found (const char *guihost, int guiport, void *structure) |
12 | { | 12 | { |
13 | wl_network_t *ptr; | 13 | wl_network_t *ptr; |
14 | char buffer[2048]; | 14 | char buffer[2048]; |
15 | char temp[4]; | 15 | char temp[5]; |
16 | 16 | ||
17 | ptr = (wl_network_t *)structure; | 17 | ptr = (wl_network_t *)structure; |
18 | 18 | ||
19 | memset(buffer, 0, 2048); | 19 | memset(buffer, 0, 2048); |
20 | 20 | ||
21 | /* Type = Found new net */ | 21 | /* Type = Found new net */ |
22 | memcpy(buffer, "01", 2); | 22 | memcpy(buffer, "01", 2); |
23 | 23 | ||
24 | /* Set Net-type */ | 24 | /* Set Net-type */ |
25 | memset(temp, 0, sizeof(temp)); | 25 | memset(temp, 0, sizeof(temp)); |
26 | snprintf(temp, 2, "%d", ptr->net_type); | 26 | snprintf(temp, 2, "%d", ptr->net_type); |
27 | memcpy(buffer + 2, temp, 1); | 27 | memcpy(buffer + 2, temp, 1); |
28 | 28 | ||
29 | /* Set channel */ | 29 | /* Set channel */ |
30 | memset(temp, 0, sizeof(temp)); | 30 | memset(temp, 0, sizeof(temp)); |
31 | 31 | ||
@@ -43,35 +43,40 @@ int send_network_found (const char *guihost, int guiport, void *structure) | |||
43 | 43 | ||
44 | /* Set MAC address */ | 44 | /* Set MAC address */ |
45 | memcpy(buffer + 6, ptr->mac, 17); | 45 | memcpy(buffer + 6, ptr->mac, 17); |
46 | 46 | ||
47 | /* Set lenght of ssid */ | 47 | /* Set lenght of ssid */ |
48 | memset(temp, 0, sizeof(temp)); | 48 | memset(temp, 0, sizeof(temp)); |
49 | 49 | ||
50 | if(ptr->ssid_len > 99) | 50 | if(ptr->ssid_len > 99) |
51 | snprintf(temp, 4, "%d", ptr->ssid_len); | 51 | snprintf(temp, 4, "%d", ptr->ssid_len); |
52 | else if(ptr->ssid_len < 10) | 52 | else if(ptr->ssid_len < 10) |
53 | snprintf(temp, 4, "00%d", ptr->ssid_len); | 53 | snprintf(temp, 4, "00%d", ptr->ssid_len); |
54 | else | 54 | else |
55 | snprintf(temp, 4, "0%d", ptr->ssid_len); | 55 | snprintf(temp, 4, "0%d", ptr->ssid_len); |
56 | 56 | ||
57 | memcpy(buffer + 23, temp, 3); | 57 | memcpy(buffer + 23, temp, 3); |
58 | 58 | ||
59 | fprintf( stderr, "Temp is %s\n", temp ); | ||
60 | fprintf( stderr, "ssid_len is %d\n", ptr->ssid_len ); | ||
61 | |||
59 | /* Set ssid */ | 62 | /* Set ssid */ |
60 | memcpy(buffer + 26, ptr->bssid, ptr->ssid_len); | 63 | memcpy(buffer + 26, ptr->bssid, ptr->ssid_len); |
61 | 64 | ||
65 | fprintf( stderr, "Buffer is %s\n", buffer ); | ||
66 | |||
62 | /* Send prepared buffer to GUI */ | 67 | /* Send prepared buffer to GUI */ |
63 | sendcomm(guihost, guiport, buffer); | 68 | sendcomm(guihost, guiport, buffer); |
64 | 69 | ||
65 | return 1; | 70 | return 1; |
66 | } | 71 | } |
67 | 72 | ||
68 | /* Fill buffer into structur */ | 73 | /* Fill buffer into structur */ |
69 | int get_network_found (void *structure, const char *buffer) | 74 | int get_network_found (void *structure, const char *buffer) |
70 | { | 75 | { |
71 | wl_network_t *ptr; | 76 | wl_network_t *ptr; |
72 | char temp[512]; | 77 | char temp[512]; |
73 | 78 | ||
74 | ptr = (wl_network_t *)structure; | 79 | ptr = (wl_network_t *)structure; |
75 | 80 | ||
76 | /* Get net type */ | 81 | /* Get net type */ |
77 | memset(temp, 0, sizeof(temp)); | 82 | memset(temp, 0, sizeof(temp)); |