dont send any negotiation for now

This commit is contained in:
y4my4my4m 2023-05-09 23:54:25 +09:00
parent 3f901db8b8
commit 31b7cfbb73

View file

@ -299,7 +299,7 @@ U0 Telnet(U8 *host, U16 port=TELNET_PORT) {
response[2] = option_code; response[2] = option_code;
response[3] = '\0'; response[3] = '\0';
TCPSocketSendString(sock, response); // TCPSocketSendString(sock, response);
// the bugged out SendTerminalType and SendWindowsSize was what crashed the BBS... // the bugged out SendTerminalType and SendWindowsSize was what crashed the BBS...
// if (option_code == TERMINAL_TYPE) SendTerminalType(sock, "ANSI-BBS"); // if (option_code == TERMINAL_TYPE) SendTerminalType(sock, "ANSI-BBS");
// else if (option_code == NAWS) SendWindowSize(sock, 25, 80); // else if (option_code == NAWS) SendWindowSize(sock, 25, 80);
@ -353,7 +353,8 @@ U0 Telnet(U8 *host, U16 port=TELNET_PORT) {
color_code = ansi_code - 30; // Set foreground color color_code = ansi_code - 30; // Set foreground color
} else if (ansi_code >= 40 && ansi_code <= 47) { } else if (ansi_code >= 40 && ansi_code <= 47) {
color_code = ansi_code - 40; // Set background color color_code = ansi_code - 40; // Set background color
} else { }
else {
switch (ansi_code) { switch (ansi_code) {
case 0: "$$BG$$$$FG$$"; break; // reset case 0: "$$BG$$$$FG$$"; break; // reset
// case 1: ""; break; // TODO: bold // case 1: ""; break; // TODO: bold