- Mar 16, 2021
- Mar 15, 2021
-
-
Deucе authored
Only supported on FreeBSD, Linux, Solaris, OS/2, GNU, Cygwin, and Darwin Should allow OpenBSD to build JS engine.
-
Deucе authored
Not yet tested, so more patches may be incoming.
-
echicken authored
-
echicken authored
-
Deucе authored
There are too many options now to fit in an 80x25 screen, so group all the log options into a separate sub-menu. While we're here, notice that we're writing paths up to MAX_PATH into an 80-character buffer and fix that.
-
Deucе authored
-
Deucе authored
-
Deucе authored
Do not get/set these values on other OSs. Fixes a segfault caused by default_dosemuconf_path being undefined on FreeBSD, but would also happen on any other *nix platform (ie: OpenBSD, etc).
-
Deucе authored
Some broken protocol drivers (like sz) don't send a YModem terminate at the end of a batch (or maybe just after a single file?) so SyncTERM ends up trying to fall back from G to CRC-16 to 8-bit before ending. This detects when the last known file was received, and if the YModem header that follows is not correct, aborts the transfer.
-
Deucе authored
Something weird is happening to the cryptlib session when SZ sends a lot of data... no real clues left.
-
Deucе authored
This issue may actually be a rekey issue, to clear this, we need to call cryptPopData(), but we can pop zero bytes. In this case, re-try the flush.
-
Deucе authored
During YModem-G transfers, the previous 5-second timeout was exceeded.
-
Deucе authored
-
Deucе authored
-
Deucе authored
Just copied out of the documentation.
-
Rob Swindell authored
-
- Mar 14, 2021
-
-
Deucе authored
It's not clear if this is working properly or not since the only BBS I know of that supports telnets (fido.beholderbbs.org) doesn't seem to do any telnet "stuff".
-
Deucе authored
In preperation for telnets support, make conn support TX/RX parsers. Make telnet use those new hooks, and remove unused and ambiguous bits of the conn API (conn_recv(), conn_peek()).
-
Deucе authored
All the major bugs I'm aware of are fixed (though RIP is still incomplete)
-
Deucе authored
Make an exception for all keypad stuff.
-
Deucе authored
Cursor update issue, cursor was only redrawn on a blink status change. This will redraw the cursor any time the cursor moves now.
-
Rob Swindell authored
for Al (TRMB) and his Russian users, requested via DOVE-Net. Do an FTN "ASCII 1" -> "US-ASCII" translation of the CHRS->charset too.
-
Deucе authored
Clang 11 throws an error if you do.
-
- Mar 13, 2021
-
-
Deucе authored
Presumably these were part of macros once and never cleaned up?
-
Deucе authored
Just rename ESCDELAY member to escdelay.
-
Rob Swindell authored
remove() is expected to fail in this scenario sometimes depending on how writemsg() is used - in the error case, the user was trying to edit his .plan file with the ;plan command: term Node 10 <Deuce> !ERROR 11 (Resource temporarily unavailable) in writemsg.cpp line 1232 (editfile) removing "/sbbs/node10/temp/INPUT.MSG" access=0 Thanks for the bug report!
-
Deucе authored
Apparently, the ncurses in openSUSE Leap-15.2 has the following: Since we have a struct member named ESCDELAY, we can't actually set it at all when this macro is defined. The three possibilities to deal with this are: 1) Rename the ESCDELAY member. Likely the best option long-term, but I don't want to find everything and update it at this time. 2) Avoid using the ESCDELAY member #ifdef ESCDELAY Which makes it not work in the exact set of circumstances it makes sense in. 3) #include curs_fix.h from ciolib.h This actually renames the ESCDELAY member to _nc_ESCDELAY, but you won't be able to actually notice this.
-
Deucе authored
-
Deucе authored
The low byte is no longer zero.
-
- Mar 11, 2021
-
-
Rob Swindell authored
or any lines that were only terminated with carriage-return (\r) since these are treated rather-oddly by the FTN software as a line-ending and line-feeds are to be ignored. So transfer \r to \n on output and ignore the \n's in the body text.
-
Rob Swindell authored
-
Rob Swindell authored
-
Deucе authored
-
- Mar 10, 2021
-
-
Deucе authored
Just delete the old private key and create a new one for the new host.
-