Experiments with ansi
This commit is contained in:
parent
a87775da6b
commit
3b3cc6557b
@ -820,14 +820,14 @@ void read_message(int socket, struct user_record *user, struct msg_headers *msgh
|
|||||||
ansi = z;
|
ansi = z;
|
||||||
while (strchr("ABCDEFGHIGJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", body[z]) == NULL)
|
while (strchr("ABCDEFGHIGJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", body[z]) == NULL)
|
||||||
z++;
|
z++;
|
||||||
if (body[z] == 'm' || body[z] == 'C' || body[z] == 'B' || body[z] == 'D') {
|
if (body[z] == 'm' || body[z] == 'C' || body[z] == 'D') {
|
||||||
strncpy(buffer, &body[ansi], (z - ansi) + 1);
|
strncpy(buffer, &body[ansi], (z - ansi) + 1);
|
||||||
buffer[z - ansi + 1] = '\0';
|
buffer[z - ansi + 1] = '\0';
|
||||||
s_putstring(socket, buffer);
|
s_putstring(socket, buffer);
|
||||||
}
|
}
|
||||||
if (body[z] == 'A') {
|
if (body[z] == 'A') {
|
||||||
if (lines >= atoi(&body[ansi + 2])) {
|
if (lines >= atoi(&body[ansi + 2])) {
|
||||||
//lines -= atoi(&body[ansi + 2]);
|
lines -= atoi(&body[ansi + 2]);
|
||||||
strncpy(buffer, &body[ansi], (z - ansi) + 1);
|
strncpy(buffer, &body[ansi], (z - ansi) + 1);
|
||||||
buffer[z - ansi + 1] = '\0';
|
buffer[z - ansi + 1] = '\0';
|
||||||
s_putstring(socket, buffer);
|
s_putstring(socket, buffer);
|
||||||
@ -842,6 +842,11 @@ void read_message(int socket, struct user_record *user, struct msg_headers *msgh
|
|||||||
}
|
}
|
||||||
if (body[z] == 'B') {
|
if (body[z] == 'B') {
|
||||||
lines += atoi(&body[ansi + 2]);
|
lines += atoi(&body[ansi + 2]);
|
||||||
|
if (lines <= 17) {
|
||||||
|
strncpy(buffer, &body[ansi], (z - ansi) + 1);
|
||||||
|
buffer[z - ansi + 1] = '\0';
|
||||||
|
s_putstring(socket, buffer);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (body[z] == 'D') {
|
if (body[z] == 'D') {
|
||||||
chars -= atoi(&body[ansi + 2]);
|
chars -= atoi(&body[ansi + 2]);
|
||||||
|
Reference in New Issue
Block a user