aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-misc/shift1.tests (unfollow)
Commit message (Collapse)AuthorFilesLines
3 daystls: change build defaultsRon Yorston4-4/+16
Update the default build configurations to enable the native TLS library in the 64-bit Unicode and ARM64 builds.
3 daystls: whitespace fixesRon Yorston5-8/+8
No functional changes.
3 daystls: fix schannel handshake on older WindowsRFL8901-1/+1
4 daysstty: fix build for Windows XPRon Yorston1-0/+10
The ioctl() to get the size of the terminal windows used functions which weren't available on Windows XP. Load these dynamically to avoid failure. Adds 160 bytes.
4 daystls: add Schannel implementationrfl8906-14/+635
Not enabled by default. When enabled without TLS 1.3 support, saves 16784-18776 bytes. (GitHub PR #510)
12 dayssed: ensure temporary file is deleted on errorRon Yorston1-1/+6
It wasn't possible to delete the temporary output file in case of error on Windows because it was open. Close the file before trying to unlink it. Adds 16 bytes. (GitHub issue #509)
12 daysCall BCryptDestroyHash before freeing memory handleRFL8902-0/+2
2025-07-25stty: enable a minimal Windows implementationRon Yorston11-31/+224
Implement a minimal stty applet for Windows. - Display and set terminal rows and columns - Enable/disable raw/cooked mode - Enable/disable echo mode - Implement 'stty sane' to reset raw/cooked/echo Adds 2120-2304 bytes. (GitHub issue #58)