- Feb 20, 2018
-
-
rswindell authored
-
rswindell authored
Luckily, it doesn't appear anyone actually uses this function.
-
rswindell authored
-
deuce authored
-
rswindell authored
-
rswindell authored
-
rswindell authored
-
rswindell authored
or logon.asc if they don't exist.
-
rswindell authored
the chopping block.
-
rswindell authored
-
rswindell authored
unsafe strcat() usage (potential buffer overruns).
-
rswindell authored
-
rswindell authored
than that: the return value would be haywire if the source==target.
-
rswindell authored
.editorconfig .nexrc CMakeLists.txt <- not sure if this still working/supported or not Makefile <- ditto cleanall.sh <- new
-
rswindell authored
valid lvalue. In all the use-cases, the variable is a stack variable going out of scope anyway, so don't bother with nullification.
-
rswindell authored
HANDLE_PENDING() contains a return, so it's theoretically possible that the memory allocated by the previous JSVALUE/STRING_TO_... allocation could be leaked. So now we pass an optional pointer to HANDLE_PENDING() which will call free() on it if it's not NULL, and then sets it to NULL for good measure.
-
rswindell authored
-
rswindell authored
Use 'cleanall.sh RELEASE=1' to clean the release output dirs. The deafult is the DEBUG output dirs otherwise. This possibly could be made a 'clean' target of the Makefile already in this directory, but I don't want to deal with recursive make right now.
-
- Feb 19, 2018
- Feb 18, 2018
-
-
rswindell authored
-
rswindell authored
-
rswindell authored
This should address all outstanding SSH compatibility issues (e.g. with OpenSSH client).
-
rswindell authored
-
rswindell authored
undeclared JS_CreateCommonObjects(): ... since we're building JSexec without USE_CRYPTLIB defined.
-
rswindell authored
-
rswindell authored
Convert up to 128 characters of the passed user name to a string we can use and log in case of failure (helps to debug the full actual user name passed to the sevice, e.g. by an IMAP client).
-
rswindell authored
- Added messing HTTPS/TLS options to new "TLS" tab (enable, interfaces, port) - Added default authentication-type list edit
-
- Feb 17, 2018
-
-
rswindell authored
(e.g. to query the version) until/unless the library has been successfully initialized (and that could happen from the web server or the terminal/SSH server or a secure service that uses TLS).
-
- Feb 16, 2018
-
-
rswindell authored
-
deuce authored
ESC \ or ESC X. ESC followed by anything from '@' to '_' is an element of the C1 set, it's just that ESC [ is the most commonly used one. Use < 4 since APS, DCS, PM and OSC also have their own escape parsing.
-
rswindell authored
We need this for MSVC2013 and MSVC2017 builds.
-
rswindell authored
'jsexec scrubmsgs /sbbs/data/subs/*.shd'
-
rswindell authored
illegal control characters, a sign of corruption. Use it like this: jsexec scrubmsgs <sub_code> [sub_code] The available options are: -debug enable debug output -scan do not modify headers, just scan and report corruption detected
-
rswindell authored
with a message whose tail/tagline is corrupted or something (doesn't end in a \r\n).
-
- Feb 15, 2018