mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
remove timeout
This commit is contained in:
parent
989e452679
commit
631712d3f3
1 changed files with 6 additions and 7 deletions
|
@ -140,7 +140,7 @@ I64 TelnetOpen(U8 *host, U16 port) {
|
||||||
return sock;
|
return sock;
|
||||||
}
|
}
|
||||||
|
|
||||||
sock(CTCPSocket *)->timeout = TCP_TIMEOUT;
|
// sock(CTCPSocket *)->timeout = TCP_TIMEOUT;
|
||||||
|
|
||||||
return sock;
|
return sock;
|
||||||
}
|
}
|
||||||
|
@ -474,10 +474,13 @@ U0 Telnet(U8 *host, U16 port=TELNET_PORT) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// sock(CTCPSocket *)->timeout = 0;
|
||||||
while (TaskValidate(input_task))
|
while (TaskValidate(input_task))
|
||||||
{
|
{
|
||||||
Refresh;
|
Refresh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// sock(CTCPSocket *)->timeout = TCP_TIMEOUT;
|
||||||
TCPSocketClose(sock);
|
TCPSocketClose(sock);
|
||||||
"Telnet connection closed.\n";
|
"Telnet connection closed.\n";
|
||||||
}
|
}
|
||||||
|
@ -498,7 +501,6 @@ U0 TelnetPrompt() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dev auto-connect to test server
|
|
||||||
// Telnet("mbrserver.com");
|
// Telnet("mbrserver.com");
|
||||||
// Telnet("freechess.org");
|
// Telnet("freechess.org");
|
||||||
// Telnet("dura-bbs.net", 6359);
|
// Telnet("dura-bbs.net", 6359);
|
||||||
|
@ -527,16 +529,13 @@ U0 TelnetPrompt() {
|
||||||
// Telnet("TextMMOde.com"); // Sands of Time / Deep Space MMO
|
// Telnet("TextMMOde.com"); // Sands of Time / Deep Space MMO
|
||||||
// Telnet("legendofthereddragon.ca"); // Legend of the Red Dragon (Canada)
|
// Telnet("legendofthereddragon.ca"); // Legend of the Red Dragon (Canada)
|
||||||
// Telnet("lord.stabs.org"); // Legend of the Red Dragon
|
// Telnet("lord.stabs.org"); // Legend of the Red Dragon
|
||||||
// Telnet("thehatshop.mudhosting.net", 3000); // Hallowed Halls
|
Telnet("thehatshop.mudhosting.net", 3000); // Hallowed Halls
|
||||||
// Telnet("eclipse.cs.pdx.edi", 7680); // New Moon
|
|
||||||
// Telnet("batmud.bat.org"); // BatMUD
|
// Telnet("batmud.bat.org"); // BatMUD
|
||||||
// Telnet("forgottenkingdoms.org", 4000); // Forgotten Kingdoms
|
// Telnet("forgottenkingdoms.org", 4000); // Forgotten Kingdoms
|
||||||
// Telnet("mush.shelteringcolorado.com"), 2601; // Sheltering Sky: Colorado by Night
|
// Telnet("igormud.org", 1701);// Igor MUD
|
||||||
Telnet("igormud.org", 1701);// Igor MUD
|
|
||||||
// Telnet("achaea.com"); // Achaea, Dreams of Divine Lands
|
// Telnet("achaea.com"); // Achaea, Dreams of Divine Lands
|
||||||
// Telnet("gcomm.com"); // Galacticomm BBS
|
// Telnet("gcomm.com"); // Galacticomm BBS
|
||||||
// Telnet("1984.ws"); // 1984
|
// Telnet("1984.ws"); // 1984
|
||||||
|
|
||||||
|
|
||||||
// ZealBBS dev server
|
// ZealBBS dev server
|
||||||
// Telnet("localhost", 8888);
|
// Telnet("localhost", 8888);
|
Loading…
Reference in a new issue