Skip to content
Snippets Groups Projects
Commit 8aea7d59 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

When not in Telnet Binary TX mode, expand bare CR received from COM to CRLF

I can't believe I missed this - this would've caused definite issues with file
transfers.

I saw a discussion in FSX MYS (between apam and GEARBOX)  which clued me into
their being an issue here. I do wish users of SexPOTS would report issues to
me. :-(

Incremented version to v2.1
parent af90e9d3
No related branches found
No related tags found
No related merge requests found
Pipeline #7061 passed
Synchronet External POTS Support v1.28
Synchronet External POTS Support v2.1
Plain Old Telephone System (dial-up) support
for Windows TCP/Socket/Telnet-based BBSes
(e.g. Synchronet-Win32). www.synchro.net
......@@ -970,10 +970,18 @@ void input_thread(void* arg)
{
char dbg[32];
BYTE ch;
BYTE last_ch = 0;
BYTE nl = '\n';
lprintf(LOG_DEBUG,"Input thread started");
while(!call_terminated) {
if(!comReadByte(com_handle, &ch)) {
bool result = comReadByte(com_handle, &ch);
if(telnet && telnet_local_option[TELNET_BINARY_TX] != TELNET_WILL && last_ch == '\r'
&& (result == false || ch != '\n')) {
sendbuf(sock, &nl, sizeof nl);
last_ch = 0;
}
if(!result) {
YIELD();
continue;
}
......@@ -982,6 +990,7 @@ void input_thread(void* arg)
if(telnet && ch==TELNET_IAC)
sendbuf(sock, &ch, sizeof(ch)); /* escape Telnet IAC char (255) when in telnet mode */
sendbuf(sock, &ch, sizeof(ch));
last_ch = ch;
bytes_received++;
}
lprintf(LOG_DEBUG,"Input thread terminated");
......@@ -1737,7 +1746,7 @@ int main(int argc, char** argv)
/*******************************/
sprintf(banner,"\n%s/%-7s "
"v2.0 Copyright %s Rob Swindell"
"v2.1 Copyright %s Rob Swindell"
,TITLE
,PLATFORM_DESC
,&__DATE__[7]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment