author | Markus Bröker <mbroeker@largo.dyndns.tv> |
Sat, 13 Dec 2008 15:40:23 +0100 | |
changeset 13 | d3554afaa768 |
parent 12 | 213c3d4abc66 |
child 15 | f19c1f9b4cd3 |
permissions | -rw-r--r-- |
0 | 1 |
/** |
2 |
* $Id: irc.c 51 2008-01-10 00:19:39Z mbroeker $ |
|
3 |
* $URL: http://localhost/svn/c/mcbot/trunk/src/irc.c $ |
|
4 |
* |
|
5 |
*/ |
|
6 |
||
7 |
#include <stdio.h> |
|
8 |
#include <stdlib.h> |
|
9 |
#include <unistd.h> |
|
10 |
#include <string.h> |
|
11 |
||
12 |
#include <sys/types.h> |
|
13 |
#include <sys/socket.h> |
|
14 |
#include <netinet/in.h> |
|
15 |
#include <arpa/inet.h> |
|
16 |
#include <netdb.h> |
|
17 |
||
18 |
#include <pwd.h> |
|
19 |
||
13
d3554afaa768
mcbot-0.94-5 Changelog
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
12
diff
changeset
|
20 |
#include <compat.h> |
0 | 21 |
#include <irc.h> |
22 |
||
23 |
#define VERSION_STRING "MCBOT on GNU/LINUX" |
|
24 |
||
25 |
const char *IRC_Commands[] = { |
|
26 |
"NOTICE", "MODE", "JOIN", "PART", |
|
27 |
"TOPIC", "PING", "ENOMEM", "ERROR", |
|
28 |
"VERSION", "PRIVMSG", "QUIT", "NICK", |
|
11
a769385a59c6
Many Memory Leaks in config.c
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
10
diff
changeset
|
29 |
NULL |
0 | 30 |
}; |
31 |
||
32 |
FILE *irc_connect (char *server, unsigned int port) |
|
33 |
{ |
|
34 |
struct hostent *he; |
|
35 |
char *ip; |
|
36 |
struct sockaddr_in ca; |
|
37 |
int csocket; |
|
10
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
38 |
FILE *stream; |
0 | 39 |
|
40 |
he = gethostbyname (server); |
|
41 |
if (he == NULL) { |
|
42 |
perror ("GETHOSTBYNAME"); |
|
43 |
return NULL; |
|
44 |
} |
|
45 |
||
46 |
if ((ip = inet_ntoa (*((struct in_addr *)he->h_addr_list[0]))) == NULL) { |
|
10
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
47 |
perror ("INET_NTOA"); |
0 | 48 |
return NULL; |
49 |
} else |
|
50 |
printf ("IP: %s\n", ip); |
|
51 |
||
52 |
ca.sin_family = AF_INET; |
|
53 |
ca.sin_addr.s_addr = inet_addr (ip); |
|
54 |
ca.sin_port = htons (port); |
|
55 |
||
56 |
csocket = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP); |
|
57 |
if (connect (csocket, (struct sockaddr *)&ca, (socklen_t) sizeof (ca)) == -1) { |
|
58 |
perror ("CONNECT"); |
|
59 |
return NULL; |
|
60 |
} |
|
61 |
||
62 |
/* |
|
63 |
* rw mode,but many seek errors ... |
|
64 |
*/ |
|
5
7c7fc8906920
FreeBSD Stream Handling added and debian control files improved
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
2
diff
changeset
|
65 |
#ifdef NETBSD |
6
7eb12be31bb5
Various Bug Fixes including
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
5
diff
changeset
|
66 |
/* |
7eb12be31bb5
Various Bug Fixes including
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
5
diff
changeset
|
67 |
* BEGIN OF STREAM |
7eb12be31bb5
Various Bug Fixes including
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
5
diff
changeset
|
68 |
*/ |
5
7c7fc8906920
FreeBSD Stream Handling added and debian control files improved
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
2
diff
changeset
|
69 |
stream = fdopen (csocket, "r+"); |
7c7fc8906920
FreeBSD Stream Handling added and debian control files improved
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
2
diff
changeset
|
70 |
#else |
6
7eb12be31bb5
Various Bug Fixes including
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
5
diff
changeset
|
71 |
/* |
7eb12be31bb5
Various Bug Fixes including
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
5
diff
changeset
|
72 |
* END OF STREAM |
7eb12be31bb5
Various Bug Fixes including
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
5
diff
changeset
|
73 |
*/ |
0 | 74 |
stream = fdopen (csocket, "a+"); |
5
7c7fc8906920
FreeBSD Stream Handling added and debian control files improved
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
2
diff
changeset
|
75 |
#endif |
6
7eb12be31bb5
Various Bug Fixes including
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
5
diff
changeset
|
76 |
csocket = fileno (stream); |
5
7c7fc8906920
FreeBSD Stream Handling added and debian control files improved
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
2
diff
changeset
|
77 |
|
7c7fc8906920
FreeBSD Stream Handling added and debian control files improved
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
2
diff
changeset
|
78 |
printf ("Using filedescriptor %d for stream operations\n", csocket); |
0 | 79 |
return stream; |
80 |
} |
|
81 |
||
6
7eb12be31bb5
Various Bug Fixes including
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
5
diff
changeset
|
82 |
int irc_login (FILE * stream, char *server, char *nick, char *password) |
0 | 83 |
{ |
10
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
84 |
MSG message = { NULL, 0, 0, 0, 0, 0, 0 }; |
0 | 85 |
char msg[513]; |
86 |
char *user; |
|
10
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
87 |
struct passwd *pwd; |
0 | 88 |
|
10
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
89 |
if ((user = getenv ("USER")) == NULL) |
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
90 |
return IRC_GENERAL_ERROR; |
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
91 |
|
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
92 |
if ((pwd = getpwnam (user)) == NULL) |
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
93 |
return IRC_GENERAL_ERROR; |
0 | 94 |
|
6
7eb12be31bb5
Various Bug Fixes including
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
5
diff
changeset
|
95 |
if (password == NULL) |
0 | 96 |
return IRC_LOGIN_ERROR; |
97 |
||
98 |
if (stream == NULL) |
|
99 |
return IRC_GENERAL_ERROR; |
|
10
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
100 |
else |
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
101 |
message.stream = stream; |
0 | 102 |
|
103 |
fprintf (stream, "NICK %s\r\n", nick); |
|
6
7eb12be31bb5
Various Bug Fixes including
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
5
diff
changeset
|
104 |
fprintf (stream, "USER %s 0 %s %s\r\n", user, server, pwd->pw_gecos); |
0 | 105 |
fprintf (stream, "PRIVMSG NICKSERV :IDENTIFY %s\r\n", password); |
106 |
||
107 |
for (;;) { |
|
11
a769385a59c6
Many Memory Leaks in config.c
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
10
diff
changeset
|
108 |
*msg = '\0'; |
0 | 109 |
fgets (msg, 512, stream); |
110 |
if ((user = irc_parsemessage (msg, &message)) != NULL) |
|
111 |
printf ("%10s %s\n", user, message.line); |
|
112 |
||
113 |
if (strstr (msg, "VERSION") != NULL) { |
|
114 |
printf ("%10s %s", "VERSION", msg); |
|
115 |
printf ("%10s %s %s :%s\n", "WRITE", message.command, message.user, VERSION_STRING); |
|
116 |
fprintf (stream, "VERSION :%s\r\n", VERSION_STRING); |
|
117 |
} |
|
118 |
||
119 |
if (strstr (msg, ":Password accepted") != NULL) { |
|
120 |
break; |
|
121 |
} |
|
122 |
||
1
5d249c79842d
quick and dirty freenode connect fix
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
0
diff
changeset
|
123 |
if (strstr (msg, ":You are now logged in.") != NULL) { |
5d249c79842d
quick and dirty freenode connect fix
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
0
diff
changeset
|
124 |
break; |
5d249c79842d
quick and dirty freenode connect fix
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
0
diff
changeset
|
125 |
} |
5d249c79842d
quick and dirty freenode connect fix
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
0
diff
changeset
|
126 |
|
0 | 127 |
if (strstr (msg, ":Password Incorrect") != NULL) { |
128 |
return IRC_LOGIN_ERROR; |
|
129 |
} |
|
130 |
||
131 |
if (strstr (msg, "ERROR :Closing Link") != NULL) { |
|
132 |
return IRC_GENERAL_ERROR; |
|
133 |
} |
|
134 |
||
135 |
if (strstr (msg, "is not registered") != NULL) { |
|
136 |
return IRC_LOGIN_ERROR; |
|
137 |
} |
|
138 |
} |
|
139 |
||
140 |
sleep (2); |
|
141 |
return 0; |
|
142 |
} |
|
143 |
||
144 |
static char *irc_getmessage (const char *line, MSG * message) |
|
145 |
{ |
|
12
213c3d4abc66
A simple garbage collector fills the memory leaks...
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
11
diff
changeset
|
146 |
static char *garbage_collector = NULL; |
0 | 147 |
char *theLine; |
148 |
char *token; |
|
149 |
char *ptr; |
|
150 |
||
13
d3554afaa768
mcbot-0.94-5 Changelog
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
12
diff
changeset
|
151 |
if (garbage_collector != NULL) { |
12
213c3d4abc66
A simple garbage collector fills the memory leaks...
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
11
diff
changeset
|
152 |
free (garbage_collector); |
13
d3554afaa768
mcbot-0.94-5 Changelog
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
12
diff
changeset
|
153 |
garbage_collector = NULL; |
d3554afaa768
mcbot-0.94-5 Changelog
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
12
diff
changeset
|
154 |
} |
12
213c3d4abc66
A simple garbage collector fills the memory leaks...
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
11
diff
changeset
|
155 |
|
13
d3554afaa768
mcbot-0.94-5 Changelog
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
12
diff
changeset
|
156 |
if ((theLine = compat_strdup (line)) == NULL) |
0 | 157 |
return "ENOMEM"; |
12
213c3d4abc66
A simple garbage collector fills the memory leaks...
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
11
diff
changeset
|
158 |
else |
213c3d4abc66
A simple garbage collector fills the memory leaks...
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
11
diff
changeset
|
159 |
garbage_collector = theLine; |
0 | 160 |
|
161 |
message->user = message->email = NULL; |
|
162 |
message->command = NULL; |
|
163 |
message->channel = message->line = NULL; |
|
164 |
||
165 |
token = strtok (theLine, " "); |
|
166 |
if (*token != ':') { |
|
167 |
/* |
|
168 |
* SERVER MESSAGES |
|
169 |
*/ |
|
170 |
if ((ptr = strtok (NULL, "\r\n")) != NULL) |
|
171 |
++ptr; |
|
172 |
message->line = ptr; |
|
173 |
return token; |
|
174 |
} |
|
175 |
||
176 |
message->user = ++token; |
|
177 |
message->command = strtok (NULL, " "); |
|
178 |
||
179 |
message->line = strtok (NULL, "\r\n"); |
|
180 |
||
181 |
return message->command; |
|
182 |
} |
|
183 |
||
9
aff6726b8b87
Private Messages will be send to the proper location
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
6
diff
changeset
|
184 |
/** |
0 | 185 |
* Main prints ("%10s %s %s\n", MSG->command MSG->channel MSG->line). |
186 |
* This functions makes sure, that there will be someting to print... |
|
187 |
*/ |
|
188 |
char *irc_parsemessage (const char *line, MSG * message) |
|
189 |
{ |
|
190 |
int i; |
|
191 |
char *command; |
|
192 |
char *ptr; |
|
193 |
int value; |
|
194 |
||
195 |
i = 0; |
|
196 |
if ((command = irc_getmessage (line, message)) != NULL) { |
|
197 |
while (IRC_Commands[i] != NULL) { |
|
198 |
if (strcmp (IRC_Commands[i], command) == 0) { |
|
199 |
switch (i) { |
|
200 |
case 0: /* NOTICE */ |
|
201 |
if (message->line == NULL) { |
|
202 |
message->channel = "*"; |
|
203 |
message->line = "*"; |
|
204 |
} else { |
|
205 |
message->channel = strtok (message->line, " "); |
|
206 |
if ((message->line = strtok (NULL, "\r\n")) != NULL) |
|
207 |
++message->line; |
|
208 |
} |
|
209 |
return command; |
|
210 |
case 1: /* MODE */ |
|
211 |
message->channel = strtok (message->line, " "); |
|
212 |
message->line = strtok (NULL, "\r\n"); |
|
213 |
return command; |
|
214 |
case 2: /* JOIN */ |
|
215 |
case 3: /* PART */ |
|
216 |
if ((message->channel = strchr (message->line, ':'))) |
|
217 |
++message->channel; |
|
218 |
message->line = message->user; |
|
219 |
return command; |
|
220 |
case 4: /* TOPIC */ |
|
221 |
message->channel = strtok (message->line, " "); |
|
222 |
if ((message->line = strtok (NULL, "\r\n"))) |
|
223 |
++message->line; |
|
224 |
return command; |
|
225 |
case 5: /* PING */ |
|
226 |
#ifdef DEBUG |
|
9
aff6726b8b87
Private Messages will be send to the proper location
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
6
diff
changeset
|
227 |
/* |
aff6726b8b87
Private Messages will be send to the proper location
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
6
diff
changeset
|
228 |
* DONT NERVE WITH PING PONG MESSAGES |
aff6726b8b87
Private Messages will be send to the proper location
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
6
diff
changeset
|
229 |
*/ |
0 | 230 |
printf ("%10s %s localhost\n", "PING", message->line); |
231 |
#endif |
|
232 |
fprintf (message->stream, "PONG :%s\r\n", message->line); |
|
233 |
message->channel = "localhost"; |
|
234 |
#ifdef DEBUG |
|
235 |
return "PONG"; |
|
236 |
#else |
|
237 |
return NULL; |
|
238 |
#endif |
|
239 |
case 6: /* ENOMEM */ |
|
240 |
case 7: /* ERROR */ |
|
9
aff6726b8b87
Private Messages will be send to the proper location
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
6
diff
changeset
|
241 |
return command; |
0 | 242 |
case 8: /* VERSION */ |
243 |
if ((ptr = strchr (message->user, ' '))) |
|
11
a769385a59c6
Many Memory Leaks in config.c
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
10
diff
changeset
|
244 |
*ptr = '\0'; |
0 | 245 |
return command; |
246 |
case 9: /* PRIVMSG */ |
|
247 |
if ((message->email = strchr (message->user, '='))) |
|
248 |
++message->email; |
|
249 |
if ((ptr = strchr (message->user, '!'))) |
|
11
a769385a59c6
Many Memory Leaks in config.c
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
10
diff
changeset
|
250 |
*ptr = '\0'; |
0 | 251 |
|
252 |
message->channel = strtok (message->line, " "); |
|
9
aff6726b8b87
Private Messages will be send to the proper location
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
6
diff
changeset
|
253 |
message->current_channel = message->channel; |
0 | 254 |
message->line = strtok (NULL, "\r\n"); |
255 |
message->line++; |
|
256 |
printf ("%10s %s %s :%s\n", "READ", message->command, message->channel, message->line); |
|
257 |
return NULL; |
|
258 |
case 10: /* QUIT */ |
|
259 |
message->channel = message->user; |
|
260 |
return command; |
|
261 |
case 11: /* NICK */ |
|
262 |
message->channel = message->user; |
|
263 |
return command; |
|
264 |
} |
|
265 |
} |
|
266 |
i++; |
|
267 |
} |
|
268 |
||
269 |
if ((value = atoi (command)) != 0) { |
|
270 |
switch (value) { |
|
271 |
case 1: /* CONNECTION INFOS */ |
|
272 |
case 2: |
|
273 |
case 3: |
|
274 |
case 4: |
|
275 |
case 5: |
|
276 |
case 250: |
|
277 |
case 251: |
|
278 |
case 252: |
|
279 |
case 254: |
|
280 |
case 255: |
|
281 |
case 265: |
|
282 |
case 266: |
|
283 |
/* |
|
284 |
* prints as is in irc_login |
|
285 |
*/ |
|
286 |
return command; |
|
287 |
case 311: |
|
288 |
case 312: |
|
289 |
case 315: /* END OF WHO */ |
|
290 |
case 318: |
|
291 |
message->channel = strtok (message->line, " "); |
|
292 |
message->line = strtok (NULL, "\r\n"); |
|
293 |
return command; |
|
294 |
case 319: |
|
295 |
message->channel = strtok (message->line, " "); |
|
296 |
message->line = strtok (NULL, "\r\n"); |
|
9
aff6726b8b87
Private Messages will be send to the proper location
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
6
diff
changeset
|
297 |
fprintf (message->stream, "PRIVMSG %s :%s\r\n", message->current_channel, message->line); |
0 | 298 |
return command; |
299 |
case 320: |
|
10
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
300 |
case 328: /* INFORMATION */ |
0 | 301 |
case 332: /* TOPIC OF CHANNEL */ |
302 |
case 333: /* NAMES IN CHANNEL */ |
|
303 |
message->channel = strtok (message->line, " "); |
|
304 |
message->line = strtok (NULL, "\r\n"); |
|
305 |
return command; |
|
306 |
case 351: /* SVERSION */ |
|
307 |
message->channel = strtok (message->line, " "); |
|
308 |
message->line = strtok (NULL, "\r\n"); |
|
309 |
return command; |
|
310 |
case 352: /* WHO LIST */ |
|
311 |
message->channel = strtok (message->line, " "); |
|
312 |
message->line = strtok (NULL, "\r\n"); |
|
313 |
/* |
|
314 |
* MORE THAN 3 LINES AND YOU WILL be KICKED |
|
315 |
*/ |
|
316 |
return command; |
|
317 |
case 353: |
|
318 |
case 365: |
|
319 |
case 366: /* END OF NAMES */ |
|
320 |
message->channel = strtok (message->line, " "); |
|
321 |
message->line = strtok (NULL, "\r\n"); |
|
322 |
return command; |
|
323 |
case 372: /* MOTD MESSAGES */ |
|
324 |
case 375: |
|
325 |
case 376: /* END OF MOTD */ |
|
326 |
return command; |
|
327 |
case 401: /* NO SUCH NICK/CHANNEL */ |
|
10
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
328 |
case 403: /* THAT CHANNEL DOESN'T EXIST */ |
13
d3554afaa768
mcbot-0.94-5 Changelog
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
12
diff
changeset
|
329 |
case 412: /* NO TEXT TO SEND */ |
10
311ea5fa60dd
Code cleanups and debian changelogs
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
9
diff
changeset
|
330 |
case 441: /* THEY AREN'T ON THIS CHANNEL */ |
0 | 331 |
return command; |
332 |
case 474: |
|
333 |
case 475: |
|
334 |
case 476: |
|
335 |
case 477: |
|
9
aff6726b8b87
Private Messages will be send to the proper location
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
6
diff
changeset
|
336 |
case 482: |
0 | 337 |
message->channel = strtok (message->line, " "); |
338 |
message->line = strtok (NULL, "\r\n"); |
|
339 |
return command; |
|
2
6a2e88214b80
freenode fix indented
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
1
diff
changeset
|
340 |
case 901: /* notify or some crap */ |
6a2e88214b80
freenode fix indented
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
1
diff
changeset
|
341 |
message->channel = strtok (message->line, " "); |
6a2e88214b80
freenode fix indented
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
1
diff
changeset
|
342 |
message->line = strtok (NULL, "\r\n"); |
6a2e88214b80
freenode fix indented
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
1
diff
changeset
|
343 |
return command; |
0 | 344 |
default: |
345 |
printf ("DEBUG %s", line); |
|
9
aff6726b8b87
Private Messages will be send to the proper location
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
6
diff
changeset
|
346 |
printf ("Unknown Command Value: %d\n", value); |
0 | 347 |
} |
348 |
} |
|
349 |
printf ("DEBUG %s", line); |
|
350 |
printf ("Unknown Command: %s\n", command); |
|
351 |
return command; |
|
352 |
} |
|
9
aff6726b8b87
Private Messages will be send to the proper location
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
6
diff
changeset
|
353 |
printf ("NOT PARSEABLE %s", line); |
0 | 354 |
return NULL; |
355 |
} |