more experimentation
This commit is contained in:
parent
8c47224077
commit
621fc7ed18
@ -820,13 +820,18 @@ void read_message(int socket, struct user_record *user, struct msg_headers *msgh
|
||||
ansi = z;
|
||||
while (strchr("ABCDEFGHIGJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", body[z]) == NULL)
|
||||
z++;
|
||||
if (body[z] == 'm' || body[z] == 'C' || body[z] == 'B' || body[z] == 'D' || body[z] == 'A') {
|
||||
if (body[z] == 'm' || body[z] == 'C' || body[z] == 'B' || body[z] == 'D') {
|
||||
strncpy(buffer, &body[ansi], (z - ansi) + 1);
|
||||
buffer[z - ansi + 1] = '\0';
|
||||
s_putstring(socket, buffer);
|
||||
}
|
||||
if (body[z] == 'A') {
|
||||
lines -= atoi(&body[ansi + 2]);
|
||||
if (lines >= atoi(&body[ansi + 2])) {
|
||||
lines -= atoi(&body[ansi + 2]);
|
||||
strncpy(buffer, &body[ansi], (z - ansi) + 1);
|
||||
buffer[z - ansi + 1] = '\0';
|
||||
s_putstring(socket, buffer);
|
||||
}
|
||||
}
|
||||
if (body[z] == 'C') {
|
||||
chars += atoi(&body[ansi + 2]);
|
||||
|
Reference in New Issue
Block a user