- Oct 09, 2022
-
-
Rob Swindell authored
We no longer use/require the USE_DOSEMU definition anywhere else, so this was just a miss when the DOSEMU patch was perm-enabled.
-
- Oct 08, 2022
-
-
Deucе authored
sbbs3/../xpdev/netwrap.h:45:27: warning: 'parseIPv6Address' has C-linkage specified, but returns incomplete type 'struct in6_addr' which could be incompatible with C [-Wreturn-type-c-linkage] DLLEXPORT struct in6_addr parseIPv6Address(const char*); ^
-
Deucе authored
New Medium impact and a low impact issue still needs to be triaged.
-
Rob Swindell authored
Previously, when a user disconnected or ran out of time while running a stdio-based external program on *nix, if the program was still running, we'd send it a SIGHUP, wait up to 10 seconds for the process to terminate and if it did not, terminate it (ungracefully) with SIGKILL. Since some programs catch SIGTERM (and not SIGHUP) to indicate a termination request, we now will first attempt a SIGHUP, wait up to 5 seconds for the process to terminate and if it does not, then send a SIGTERM and wait up to another 5 seconds for it to terminate and if it doesn't, then finally send it a SIGKILL (which cannot be caught and always results in an ungraceful termination of the child process). This doesn't resolve any specific problem with any specific stdio-based external program, but I was playing around with ESR's port of Adventure (https://gitlab.com/esr/open-adventure) and a new auto-save/restore of game state and noticed that we weren't using SIGTERM for this situation, though we should have. Most modern programs, if they catch SIGHUP at all, use it to indicate a refresh of configuration or data files, not a termination request (or indication that a user has "hung up"). So SIGTERM is more reasonable to be expected to be caught and initiate the graceful termination of the child program that we're hoping for.
-
- Oct 07, 2022
-
-
Rob Swindell authored
Per Deon (ALTERANT) via DOVE-Net: Oct 7 09:47:16 d-11-1 synchronet: srvc 0060 BINKPS connection accepted from: 2402:1f00:8101:b3c:1000::2 port 55338 Oct 7 09:47:16 d-11-1 synchronet: srvc 0060 BINKPS TLS ERROR 'Server certificate has expired' (-3) setting private key Oct 7 09:47:16 d-11-1 synchronet: srvc 0060 BINKPS TLS ERROR 'Data has not been initialised' (-11) setting session active Which was odd, because my cert was renewed. I forced renewed it, and confirmed it was valid, but they were still failing. I noticed that letsyncrypt only recycles the web, which is probably the issue. Once I recycled everything, binkps connections started working again.
-
- Oct 04, 2022
-
-
Rob Swindell authored
BINKP is suddenly frequently hanging on sendsocket() on Vertrauen on Windows (sending files to my Z1 hub) so try this as a solution.
-
- Sep 29, 2022
-
- Sep 24, 2022
-
-
Rob Swindell authored
DDMsgReader: Added a mouse click hotspot for ? for message list mode See merge request !210
-
-
- Sep 23, 2022
-
-
Rob Swindell authored
DDMsgReader: Refactored how email replies are done (passing the header to the appropriate functions, not using ungetstr() when prompting for the message subject See merge request !209
-
DDMsgReader: Refactored how email replies are done (passing the header to the appropriate functions, not using ungetstr() when prompting for the message subject
-
- Sep 17, 2022
-
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
- Sep 16, 2022
-
-
Rob Swindell authored
Need to nullify the xpms after destroying/freeing (as is done in other servers already).
-
Rob Swindell authored
-
- Sep 11, 2022
-
-
Rob Swindell authored
Removed temporary debug code that accidentally made it in last commit See merge request !208
-
Rob Swindell authored
Sometimes files uploaded may have the wrong case in the filebase (a different unresolved issue), but for instances where that has happened, make those files viewable in sbbs. This really only impacts target OSes with case-sensitive file systems (e.g. *nix).
-
- Sep 10, 2022
-
-
Eric Oulashin authored
-
- Sep 03, 2022
-
-
Rob Swindell authored
As reported by Android8675 (SHODAN) on DOVE-Net. This problem did not manifest itself in 32-bit builds.
-
- Aug 22, 2022
-
-
Rob Swindell authored
-
Rob Swindell authored
If a new JS context could not be created for any reason, a JS runtime would still be allocated (and leaked), potentially leading to out of memory situations which had been seen (before this change) on vert.synchro.net.
-
- Aug 20, 2022
-
-
Rob Swindell authored
Set the control key pass-thru so that some hotkeys (such as Ctrl-P for PageUp) only get caught by the scripts. See merge request !207
-
Eric Oulashin authored
Set the control key pass-thru so that some hotkeys (such as Ctrl-P for PageUp) only get caught by the scripts.
-
- Aug 13, 2022
-
-
Rob Swindell authored
-
Rob Swindell authored
The "Events" log messages will now be logged to a disk file in data/events*.log by default (unless this option is disabled). If the "First node" is > 1, then the base filename will be "events<first-node>", otherwise, it's just "events". This is because you would not want multiple instances of sbbs writing to the same events.log file - that would be chaos. These log files are subject the log rotation/retention policy defined in SCFG. This should resolve the FAQ for Windows sysops about what log file to which their event log messages are being written.
-
Rob Swindell authored
The functions aren't DLL-exported, so the difference in FILE* support between an app and a library is not an issue... yet, but it could be someday, so just for good measure.
-
- Aug 11, 2022
-
-
Rob Swindell authored
Also, don't match against deleted (blank) usernames in name.dat (e.g. when 'name' value consists of a single ETX character).
-
- Aug 10, 2022
-
-
Rob Swindell authored
-
Rob Swindell authored
-
- Aug 09, 2022
-
-
Rob Swindell authored
Proper use of js.on_exit() in DDMsgReader and SlyEdit See merge request !206
-
Eric Oulashin authored
Used js.on_exit() to set console.ctrlkey_passthru back on exit properly (SlyEdit, DDMsgReader) and bbs.sys_status (SlyEdit)
-
- Aug 08, 2022
-
-
Rob Swindell authored
DDMsgReader v1.54: Users now have a personal twit list (configurable via Ctrl-U, user settings). See merge request !205
-
-
- Aug 05, 2022
-
-
Rob Swindell authored
-
- Aug 04, 2022
-
-
Rob Swindell authored
When there are no chat action sets or an action set has been deleted, bad things would happen (e.g. segfault) when listing chat channels.
-