- Feb 24, 2024
-
-
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
-
-
Deucе authored
-
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!
-
- 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.
-
Deucе authored
The option from the menu (ALT-Z/CTRL-S) was copy/pasted years ago and never updated while the keyboard shortcut (ALT-L) was updated quite a bit. This extracts the ALT-L code into a function and calls it from the menu.
-
Deucе authored
This should fix the recent issue when a larger or smaller version is painted inside the window after resize, as well as fix ALT-→ when the current size is not an integer multiple.
-
- Feb 21, 2024
-
-
Deucе authored
This is my happy place on the desktop system running xfce4... any higher, and it interferes with how I manage my windows. Hopefully, this value convers the initialization portion perfectly on all systems (hah!).
-
Deucе authored
Instead of strictly using "first resize", also count flushes and assume the hack isn't needed after five. Experimentation on my ChromeBook shows 3 to be sufficient, so I'm sing five for now. Odds are that this will still mess with tiling WMs, but I don't use one, so I don't mind yet. I expect this will be better, but likely still not great.
-
Deucе authored
Fixes issue with possible corrupt display when "weird" scaling changes occured.
-
Deucе authored
Bugfis: Be sure to terminate value if returning deflt. Paranoia: Terminate value if iniGetString() returns NULL I think the only way to trigger the paranoia is to pass NULL as the default when reading a key that's not present.
-
Deucе authored
-
Deucе authored
The first time we receive a MapNotify or ConfigureNotify that sets the width and height, resize the window instead of accepting the current window size.
-
Deucе authored
Silly to pass a 728-byte object as a parameter.
-
Deucе authored
No more using the standard int type and having it work. Thanks Microsoft.
-
Deucе authored
-
Deucе authored
Use strtoll() to parse number (except when _BORLANDC_ of course)
-
Deucе authored
OpenFile() returns HFILE and is sus, CreateFile() is more complex, but returns a HANDLE (and is what MSDN suggests I use).
-
Deucе authored
-
Deucе authored
This is why I returned ret. :D
-
Deucе authored
-
Deucе authored
Fix incorrect Coverity issue that speculates this may return fval.
-
Rob Swindell authored
This was the behavior for all string input in SBBS until recently (Commit 5dec1519), with this change, an exception is being made for message subjects, but the vast majority of other string input is still limited to single-byte (i.e. US-ASCII or CP437) characters. This should fix issue #720
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
The first fix was to copy the right value, the second fix was to ensure zero-length strings are terminated.
-