- Feb 24, 2024
-
-
Rob Swindell authored
This eliviates the issue of partial/corrupted UTF-8 sequences when spying on a node serving a UTF-8 terminal.
-
Rob Swindell authored
-
Rob Swindell authored
SlyEdit DCT: Use Math.floor() to create an actual number instead of toFixed(0) like I was in some very old parts of the code. This fixes some cursor position calculations (for the current time, particularly). See merge request !414
-
SlyEdit DCT: Use Math.floor() to create an actual number instead of toFixed(0) like I was in some very old parts of the code. This fixes some cursor position calculations (for the current time, particularly).
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
_fintfirst() is declared in the Mingw-w64 headers as an intptr_t, which tracks. Can't find _findfirst on MSDN, so that's good enough for me... let's see what the pipeline says.
-
Deucе authored
mingw32 has been dead for years, and is missing huge swaths of the Windows APIs. strerror_s() was the straw that broke the camels back here, but there's a lot of hackery for it. I'm not going to go through and actually remove the build support yet since I may want to do the 1.2 SyncTERM release with it (though likely not), but it's not long for this world.
-
Deucе authored
-
Deucе authored
-
Rob Swindell authored
Added NEW-ENVIRON. Note the variable is NEW_ENVIRON See merge request !413
-
-
Rob Swindell authored
The definition of vsnprintf as _vsnprintf didn't seem to hurt the build (as well, for Borland)
-
Rob Swindell authored
The GNU_SOURCE build of this function was (sometimes?) just returning the string and not actually copying it to the passed buf. This is consistent with the GNU manpage on strerror_r(): "This may be either a pointer to a string that the function stores in buf ..." but was inconsistent with all the other build types of this function. Also updated to use strlcpy and write the problematic error number to the default string (if unknown).
-
Rob Swindell authored
As Nelgin pointed out, a Socket.connect() failure for reasons of address/host lookup failure would report a stale/nonsense Socket.error/error_str value. This change required us to query/store the socket API/getaddrinfo error string at the time of failure (for the Socket.error_str property value) rather than converting from number to string at the time the property is read. This does mean that sometimes Socket.error is a errno value and sometimes its a getaddrinfo (EAI_*) error value. Since the EAI_* values are negative, it should be obvious which is which.
-
Rob Swindell authored
-
Rob Swindell authored
Reads the new(ish) node*/terminal.ini file when it's changed to determine the connected-client's terminal type/dimensions. Now reports the terminal details in the spy form title/caption and if it's UTF-8, does a real-time translation to CP437 (since F. Piette's terminal lib only supports CP437). There is a bug here where if the data read from the RingBuffer is a partial UTF-8 sequence, it isn't decoded correctly. Fix that later (?) if it actually bugs anyone. There's no PETSCII conversion/support added here. I expect to someday replace this entirely (likely with something that uses cterm), so didn't want to invest too much time into this. But at least now spying on non-traditional ANSI-BBS clients isn't so terrible to look at.
-
Deucе authored
-
Deucе authored
These are regarding initializing variables at the same time as the mutex. Harmless.
-
- Feb 23, 2024
-
-
Rob Swindell authored
Added MSP, MXP, MSDP and a few other protocols See merge request !412
-
-
Deucе authored
readHeaderFixed() already assumes the same header pointer will be passed in next call if the read is incomplete.
-
Deucе authored
If we don't get one of the commands we're waiting for, close the socket and exit instead of returning with the appearance of having received one.
-
Rob Swindell authored
Change wait_for() to no longer loop indefinitely. If nick is rejected (e.g. begins with number), prepend '_' to it. Increment version number to 1.62 Fixes issue #723
-
Rob Swindell authored
What I haven't really worked out is what if the translated word mnemonic is a duplicate of another, valid command key.
-
Deucе authored
We've patched this thing enough to have a different identifier.
-
Deucе authored
By default, Cryptlib uses the type of whatever channel happens to be currently selected, so if the server has sent some data, that will be shell. Instead, look up the new channel and use that type info. Ugh.
-
Deucе authored
-
Deucе authored
Previously, it was read into a local variable, and in the case of a partial read, everything would go to hell and SSH would hang. "Luckily" this was very hard to trigger.
-
Deucе authored
Also, fix an unlikely race condition. This, combined with the cryptlib patches, fixes various weird SSH hangs resulting from partial reads of the SSH packet headers... a rare event that's very hard to trigger. Special thanks to MeaTLoTioN for reporting this, and running a BBS that manages to trigger it reliably. Check out The Quantum Wormhole and say thanks!
-
Deucе authored
This should work exactly the same, but is more correct. It's possible that in the future, packet data could be added to the buffer after receiveBufPos, and we could know that no more is required.
-
Deucе authored
-
- Feb 22, 2024
-
-
Deucе authored
-
Deucе authored
-
Deucе authored
Fixes Coverity issue.
-
Deucе authored
Since old is a strdup() of list->comment, it's known that it will fit, but Coverity doesn't know that.
-
Deucе authored
Whill this is perfectly legal and is not a problem, Coverity complains.
-
Deucе authored
-
Deucе authored
This will hopefully keep both Coverity and compilers happy.
-