Timeline

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

197 check-ins using file puttymem.h version 78d059c447

2001-04-28
03:42
Add some fflushes to make it easier for piped programs to talk to plink and pscp check-in: 3ca35402c6 user: simon tags: trunk
02:49
Updated dependencies thanks to Dave Hinton's mkdeps script check-in: 855dddf6f7 user: simon tags: trunk
2001-04-18
10:23
Using plink with CVS - need to make sure the saved session uses SSH check-in: 5f88d97855 user: owen tags: trunk
2001-04-17
05:39
Useful workaround I was given, to fake storing settings in a file. check-in: 0141c9049e user: simon tags: trunk
04:25
Two more small bugs introduced by the B-tree reorg: scroll() now requires fix_cpos() to be called after it (otherwise cpos might point to a line that isn't where you remember it being), and a mis-aimed incpos() was causing forward selection dragging not to include the char under the mouse. Both fixed. check-in: e7a989dce7 user: simon tags: trunk
03:53
Fix alternate-screen bugs introduced by move to B-trees. Alternate screen wasn't being correctly cleared on creation, and also wasn't inhibiting scrollback like it should have. check-in: a9f85fca1b user: simon tags: trunk
03:24
Having now compiled the last few days' changes with MSVC, it's turned up a bunch of warnings, mostly unused variables. All fixed. check-in: 24eb277009 user: simon tags: trunk
2001-04-16
16:33
Include <mmsystem.h> and winmm.lib for PlaySound. check-in: 382c2cdb71 user: simon tags: trunk
16:29
Put back Robert de Bath's second level of bell overload tracking. It had a useful purpose: when primary overload handling is disabled, it prevents MessageBeep calls overloading the program, because they don't cancel each other like async PlaySounds do. check-in: ecb3fee8fc user: simon tags: trunk
16:25
Terminal now uses unsorted counted tree234 as its basic data type. Should speed up scrollback to usable levels no matter how big your scrollback buffer. check-in: 2be3e9189f user: simon tags: trunk
16:24
countnode234() should politely return 0 when passed NULL. Was breaking delpos234(empty_tree, 0). check-in: dd587abb87 user: simon tags: trunk
12:18
Replace PuTTY's 2-3-4 tree implementation with the shiny new counted one, in preparation for using it to speed up scrollback. check-in: eaf375d551 user: simon tags: trunk
11:25
Fix excessive calls to random_byte() check-in: 6c3d4344ad user: simon tags: trunk
11:19
Quote the hostname in the `unable to connect' box so that if the user starts up N PuTTYs at once and one reports failure, they know which one. check-in: b190ef48b3 user: simon tags: trunk
11:16
Add two more ghastly function key options. WE HAVE TOO MANY! check-in: 8fba8a3021 user: simon tags: trunk
10:58
Roman Pompejus's patch to allow you to automatically select overwrite or append in logging mode. check-in: 676bb6f70a user: simon tags: trunk
07:38
Makefile enhancements by Robert de Bath. check-in: 9233e85b41 user: simon tags: trunk
07:25
Increase the read buffer size in network processing for extra speed. check-in: e667e6ef78 user: simon tags: trunk
07:08
Small keyboard patches from Robert de Bath. Should fix the dead-key problem and also some unspecified woe with the ever-problematic Compose key. check-in: de331e82c3 user: simon tags: trunk
06:18
Remove the diagnostics I checked in by mistake in the last revision. AGAIN. I really must stop doing that. check-in: d7d0dd4eca user: simon tags: trunk
06:16
Pageant interface changes. You can now do `pageant -c command' to spawn another command after starting Pageant. Also, if Pageant is already running, `pageant keyfile' and `pageant -c command' will do the Right Thing, that is, add the key to the _first_ Pageant and/or run a command and then exit. The only time you now get the `Pageant is already running' error is if you try to start the second copy with no arguments. NB the affected files in this checkin are rather wide-ranging because I renamed the not really SSH1-specific `ssh1_bignum_bitcount' function to just `bignum_bitcount'. check-in: 64fef963cc user: simon tags: trunk
04:10
Log the text message in SSH_MSG_DISCONNECT (both protocols) so that when people submit Event Logs for diagnosis it's a little easier to work out what's up. check-in: 7b0a25342b user: simon tags: trunk
02:49
After we fall back to 3DES, double-check the server really does support it, and bomb out with a complaint if not. check-in: a19cc07470 user: simon tags: trunk
2001-04-14
06:37
Bell can now play an arbitrary sound file. check-in: f62324cb45 user: simon tags: trunk
2001-04-13
06:01
Oops - remove rogue debug messages! check-in: 09b376f851 user: simon tags: trunk
05:52
New improved bell handling. Choice between visual and audible bell; configurable bell overload handling. Thanks to Robert de Bath for galvanising me into doing this, but I've had to rip most of his code out and redo it myself... check-in: 09d0105a65 user: simon tags: trunk
04:39
Some introductory blurb in the docs check-in: 42bf099edc user: simon tags: trunk
2001-04-11
07:29
Experimental checkin to see if we can prevent multiple closes ever being sent on an SSH1 forwarding (or indeed primary) channel. check-in: 38fbf062db user: simon tags: trunk
05:03
Jordan Russell's patch to match the PuTTY cursor blink rate to the system-configured one. check-in: deca9a0b7f user: simon tags: trunk
2001-04-09
07:52
Keyboard handling patch from RDB: the Windows Application key is now always Compose (we have no better use for it), and Ctrl-Alt can be made to act like AltGr (but it's never Compose even when AltGr is). check-in: 69c754c890 user: simon tags: trunk
07:46
Don't assume OEM fonts have a space in position 255. We know there's one in position 32 so let's use that! (Thanks RDB.) check-in: 824897540b user: simon tags: trunk
07:43
We can now configure the terminal's answerback string when it receives ^E. check-in: deba6874d6 user: simon tags: trunk
07:23
The About box now contains a button that starts up a browser pointing at the PuTTY web site. Thanks to Eric Theriault. check-in: 8c512d39c4 user: simon tags: trunk
06:59
Default handling of VT100 line drawing characters in cut and paste is now to translate them into poor man's characters (+--+ and |). We also have an option to disable this (and map line drawing characters to the corresponding ASCII code as before). Thanks to Robert de Bath. check-in: 84292c384f user: simon tags: trunk
2001-03-29
07:40
Fix the detect_bugs routine, which was failing to find the right bit of the version string :-) check-in: 187803a9b3 user: simon tags: trunk
2001-03-28
10:38
Oops. The new remote_cmd_ptr points in the wrong place when you copy a Config structure like plink does at one point. (I'm almost tempted to say this is where a copy constructor would be handy :-/ ) check-in: 88af46225e user: simon tags: trunk
2001-03-23
07:02
Modify the new rsa_verify routine. We now also check the integrity of the private data (verifying that p > q and that iqmp really is the inverse of q mod p). In addition, we _no longer_ check that e*d == 1 mod (p-1)(q-1): instead we do separate checks mod (p-1) and mod (q-1), since the order of the multiplicative group mod n is actually equal to lcm(p-1,q-1) rather than phi(n)=(p-1)(q-1). (In other words, the Fermat-Euler theorem doesn't point both ways.) check-in: 903c16451b user: simon tags: trunk
04:28
Fix the SSH protocol version exchange, which had a weird stack trash in it which for some reason didn't show up when built with VC++6 but blew up the nightlies. Should be OK now. check-in: ff0d0a3692 user: simon tags: trunk
03:20
Fix a couple of silly compiler warnings check-in: dd4600f52e user: simon tags: trunk
2001-03-22
15:48
Following the recent advisory about attacks on PGP keys based on tampering with the unencrypted public part of the key but leaving the private part intact ... we are now ultra-paranoid about RSA key files, and we check that the public part matches the private part _before_ we generate any signatures with them. check-in: 1d114af59c user: simon tags: trunk
15:48
Remove needless redeclaration of word32 (it was in ssh.h) check-in: 62cb12f675 user: simon tags: trunk
11:32
Remove the length limit on protocol version strings. (In principle, I could have got away with upping it to 256, but I didn't want a repeat of the chaos when some server accidentally breaks that limit too...) check-in: e6c77ffa94 user: simon tags: trunk
2001-03-19
04:27
Plink in noninteractive-script mode should not show the `Authenticated with public key' message in SSH2 (it already doesn't in SSH1). It shouldn't show the login banner either, since its output is probably redirected to something which will choke on it. check-in: 0a38f11c5d user: simon tags: trunk
04:24
Add Norman Brandinger's suggested `-m' option in plink, to read the remote command from a local file. Advantage: you can have more than one line in it, so you can remotely run what's effectively a small script. check-in: 1aa859782c user: simon tags: trunk
2001-03-16
06:09
SSH2 channel fix: received WINDOW_ADJUSTs were always applied to the primary (shell session) channel, rather than the one they were aimed at. This _despite_ me having deliberately gone and looked the channel ID up in the B-tree - I was ignoring the result by accident :-/ X forwarding should now work in SSH2 even on non-trivial clients (ie things other than xdpyinfo). check-in: dd506852aa user: simon tags: trunk
05:58
Correct handling of SSH1 protocol flags, in particular PROTOFLAG_SCREEN_NUMBER, without which OpenSSH 2.5.1 was objecting to my gratuitous inclusion of a screen number in the SSH1 X forwarding request. Ahem. check-in: 63e041800b user: simon tags: trunk
2001-03-15
11:14
Add support for SSH2 userauth banners. We currently can't deal with printing them _before_ the username prompt. This apparently isn't very serious because OpenSSH doesn't _send_ it before the username prompt, but only in response to USERAUTH_REQUEST "none". Good job we do that! check-in: 1170b92531 user: simon tags: trunk
07:25
David Brinegar's workaround for an error reporting problem in some WinSocks. check-in: c4ef2ddd63 user: simon tags: trunk
06:15
At long last: PuTTY will now report its version to the server sensibly, as a release or a snapshot or a local build. With any luck this should make bug reporting easier to handle, because anyone who sends their Event Log should automatically include the version :-) check-in: 8291e66ea6 user: simon tags: trunk
06:14
Fix a trivial compiler warning check-in: 5dad092a2a user: simon tags: trunk
05:39
Fix a few trivial compiler warnings check-in: 68118804a2 user: simon tags: trunk
05:38
Bit more robustness when talking to Pageant check-in: 0abac01e0f user: simon tags: trunk
05:32
Oops - don't invent an X authorisation when doing agent forwarding! Overenthusiastic c'n'p breaks the world. check-in: a2542209d8 user: simon tags: trunk
05:19
Fix a segfault on abrupt X connection shutdown. check-in: 4c83fcb2bd user: simon tags: trunk
2001-03-14
05:47
AES should have accelerator s, not a, to avoid a clash check-in: 318ddb27e1 user: simon tags: trunk
2001-03-13
04:22
Dave Hinton's modifications to the network layer interface, which should make it possible to add SSL support later. check-in: 0c3b3070c4 user: simon tags: trunk
03:41
Add dependencies for x11fwd.obj to Makefile (thanks Catbells :-) check-in: d0f8edee33 user: simon tags: trunk
2001-03-12
09:31
ssh_get_password has become ssh_get_line, so it can handle usernames as well. This should fix the multiple-reads-on-stdin bug in plink. check-in: fa069c172a user: simon tags: trunk
09:12
Zero length passwords no longer cause an assertion failure :-) check-in: b982530d97 user: simon tags: trunk
06:24
Finally fixed the point/pixel confusion in font handling. Thanks to Roman Surma for pointing me at the relevant bits of documentation. All font sizes should now be measured in points, and everything should be consistent, and (with any luck) old Registry settings should adapt gracefully too. check-in: 31527be6a5 user: simon tags: trunk
2001-03-10
05:04
Add support for using Diffie-Hellman with short exponents (sshdh.c contains a reference to a paper on the subject). Reduces time taken for DH group exchange to the point where it's viable to enable it all the time, so I have. :-) check-in: d67b4799b9 user: simon tags: trunk
05:03
Tiny bug in bn_power_2() - didn't work with powers that were a multiple of 16. Oops! check-in: 2fb75ebea1 user: simon tags: trunk
04:22
Update the text format of the public key as the comment box is edited check-in: e67e208029 user: simon tags: trunk
2001-03-09
07:30
Complete analysis of the magic ASN.1 stuff in RSASSA signatures check-in: ffe3af2d16 user: simon tags: trunk
2001-03-08
04:07
Having introduced a new function into the SSH2 compression structure, it would help if I implemented it in the dummy no-compression case! check-in: 6b991175b2 user: simon tags: trunk
2001-03-06
04:32
Introduce the ability to distinguish remote SSH implementations by their version strings and enable bug compatibility modes. check-in: f363cd4fcd user: simon tags: trunk
03:29
Update a couple of messages to be clearer to users who don't have access to complete documentation (ie all of them at the moment :-) check-in: 21fd39c25b user: simon tags: trunk
2001-03-05
11:31
Fix various trivial compiler warnings check-in: 585485e79e user: simon tags: trunk
10:38
Make the SSH2 traffic analysis defence robust in the face of Zlib compression. This involves introducing an option to disable Zlib compression (that is, continue to work within the Zlib format but output an uncompressed block) for the duration of a single packet. check-in: b3e5c90b5b user: simon tags: trunk
04:32
Further traffic analysis defences check-in: 5a6aa0319a user: simon tags: trunk
2001-03-03
10:38
Implement OpenSSH's private agent forwarding extension. I believe we now interoperate with OpenSSH/SSH2 to _exactly_ the same level as we interoperate with SSH1. Which is pretty cool really. check-in: 3851216d60 user: simon tags: trunk
10:10
Remove some stray diagnostics check-in: defcaaecaf user: simon tags: trunk
10:05
Remove a spurious \r\n from an Event Log message check-in: 95b45d0cd5 user: simon tags: trunk
09:56
SSH2 can now use Pageant to obtain keys from check-in: 3ae72a462d user: simon tags: trunk
09:31
Add support for the OpenSSH SSH2 agent protocol. check-in: 328b5f83c7 user: simon tags: trunk
07:53
The authentication diagnostics in SSH2 should now be better. Additionally, the ability to switch usernames if you mistype the first one has been restored (although it didn't actually work because OpenSSH didn't feel like playing; patch submitted :-). check-in: e1aa7ffa13 user: simon tags: trunk
06:05
Oops - fix silly segfault in new puttygen check-in: ffa475b6e8 user: simon tags: trunk
05:54
Preliminary support for RSA user authentication in SSH2! Most of the error messages are currently wrong, and Pageant doesn't yet support the new key type, and I haven't thoroughly tested that falling back to password authentication and trying invalid keys etc all work. But what I have here has successfully performed a public key authentication, so it's working to at least some extent. check-in: 0761a1ad90 user: simon tags: trunk
05:53
More options for bignum debugging check-in: 74ad85582b user: simon tags: trunk
2001-03-02
11:16
Include key type in SSH2 key fingerprints, now we have more than one check-in: 1ff73fc595 user: simon tags: trunk
11:14
Argh, sshrsa.c now depends on sshsha.c so Pageant needs it :-( check-in: 71f3b4536e user: simon tags: trunk
11:13
Added support for RSA host keys (not user keys yet) check-in: e92b8a0de1 user: simon tags: trunk
11:13
Extra crash-safety in decoding a DSS signature blob check-in: eaf96566f8 user: simon tags: trunk
07:55
Support for selecting AES from the GUI. In the process, I've had to introduce another layer of abstraction in SSH2 ciphers, such that a single `logical cipher' (as desired by a user) can equate to more than one `physical cipher'. This is because AES comes in several key lengths (PuTTY will pick the highest supported by the remote end) and several different SSH2-protocol-level names (aes*-cbc, rijndael*-cbc, and an unofficial one rijndael-cbc@lysator.liu.se). check-in: 6c598766ba user: simon tags: trunk
05:44
Add AES support in SSH2. Not yet complete: there's no way to select it in the GUI (or even in the registry). check-in: 4640d5ae4b user: simon tags: trunk
04:29
A fix in modmul: don't segfault or fill the result with rubbish if the unreduced product is shorter than the modulus. check-in: 8f2b0e482b user: simon tags: trunk
03:25
Fix problem with pointer hiding check-in: d2672cfce9 user: simon tags: trunk
03:24
Jacob's fixes for the Event Log check-in: 1a91f8f9d3 user: simon tags: trunk
2001-03-01
11:55
Diffie-Hellman group exchange in SSH2. Currently #ifdeffed out (change the sense of #ifdef DO_DIFFIE_HELLMAN_GEX in ssh.c) because it's _far_ too slow. Will be re-enabled once the bignum routines work a bit faster (or rather a _lot_ faster). check-in: 886d6012e2 user: simon tags: trunk
11:45
Add a key length indication to each SSH2 cipher structure, in preparation for needing to know how much key material each cipher needs in order to select a suitable Diffie-Hellman group. check-in: c3e83708f2 user: simon tags: trunk
11:41
Remove the last lingering knowledge, outside sshbn.c, of the internal structure of the Bignum type. Bignum is now a fully opaque type unless you're inside sshbn.c. check-in: 92ac2a679e user: simon tags: trunk
06:27
Stop accidental subsystem attempts check-in: 9c5e583e06 user: simon tags: trunk
05:49
Fix a potential segfault check-in: 304e70314e user: simon tags: trunk
2001-02-27
11:09
Oops, that broke Telnet negotiation display. Fix tabstops in eventlog. check-in: bb6286cbdb user: simon tags: trunk
11:02
Timestamp every line of the Event Log. The primary reason for this (generating detail in bug reports when SSH2 repeat key exchange failed) is no longer an issue, but it might be useful for other things. It's a _log_ dammit, and logs should be timestamped. check-in: 28b331bc7c user: simon tags: trunk
03:11
Patches to prevent a couple of silly crashes check-in: 373c05b772 user: simon tags: trunk
2001-02-26
10:39
Moderately evil workaround to compensate for a variation in behaviour of FXP_REALPATH. (Specifically, BSD and GNU realpath(3) disagree over whether to return success when computing the realpath for a putative new file to be created in a valid directory. There's no way we can tell from (say) the OpenSSH version string because OpenSSH might have been compiled to use the local realpath _or_ its own nonbroken one.) check-in: 0ec311cd06 user: simon tags: trunk
10:37
Ahem. sftp.obj depends on sftp.c not on psftp.c! check-in: 14ef9c586d user: simon tags: trunk
03:21
Finish adding PSFTP to the master Makefile (oops!) check-in: a5be8021cc user: simon tags: trunk
2001-02-24
10:08
psftp now works as part of the PuTTY suite check-in: 4ce457b44f user: simon tags: trunk
06:02
SFTP client now successfully handles cd, ls, get and put. check-in: 952f067aa8 user: simon tags: trunk
2001-02-23
12:21
First stab at an SFTP client. Currently a Unixland testing app, not integrated into PuTTY. check-in: 5c89fa98d9 user: simon tags: trunk
12:21
64-bit integer routines check-in: bac39448ac user: simon tags: trunk
07:15
Add a traffic analysis defence to SSH2 password authentication check-in: ea984bef10 user: simon tags: trunk
2001-02-22
03:07
Update copyright dates to 2001 :-) check-in: 1c4e5fbfeb user: simon tags: trunk
2001-02-20
07:55
Attempt to fix the remaining key re-exchange bug check-in: 5d29e6606b user: simon tags: trunk
2001-02-19
17:24
More proto `how-to' documentation: CVS and WinCVS check-in: 77e1489eda user: owen tags: trunk
04:54
Add a how-to section on public-key authentication in PSCP check-in: ce3f6668e3 user: simon tags: trunk
04:54
Add "make clean" target check-in: e0ced5572b user: simon tags: trunk
2001-02-07
05:20
Prelim. CVS/plink howto check-in: 9ea6761e36 user: owen tags: trunk
2001-02-06
03:34
Mostly Mathias Leinmueller's PuTTYgen documentation, modified slightly and Buttressed. check-in: 013cfd5538 user: owen tags: trunk
2001-02-05
07:42
Modifications to the new Close On Exit option: - wording change (required a patch to winctrls.c:radioline()) - `only on clean exit' is used when an old-style config says `yes', on the grounds that it's more generally useful than `always' and also we want to map the old default to the new default. check-in: 98357f76b8 user: simon tags: trunk
07:08
Jacob's patch to improve Close On Exit behaviour check-in: 0d1af1db05 user: simon tags: trunk
07:04
Various bug/warning fixes from Jacob check-in: 0859a0ede3 user: simon tags: trunk
2001-02-04
09:49
Fix various slashes. check-in: f9b757f58e user: owen tags: trunk
09:47
Plink documentation cribs heavily from PSCP documentation, film at 11. check-in: 23cab600a0 user: owen tags: trunk
09:35
Some examples. check-in: 021554d40f user: owen tags: trunk
2001-02-01
08:13
Shrink the keepalive-timeout box so the text beside it can all fit in check-in: 903a927c8b user: simon tags: trunk
08:11
Yet another attempt at OOB handling in the network abstraction. This version allows you to specify, per socket, which sockets receive OOB data in-line (so that you know what was before the mark and what was after) and which receive it out of line (so it's really a one-byte out-of-band facility rather than discard-to-mark). This reflects the fact that rlogin appears to make more sense in the latter mode, and telnet in the former. This patch makes rlogin work right for me. check-in: a766f640f1 user: simon tags: trunk
08:09
Ignore the zero byte at the start of the rlogin main protocol check-in: ffbd4dcd12 user: simon tags: trunk
08:07
Fix an always-false comparison (don't compare a char to 0x80!) check-in: 5b9e0a3933 user: simon tags: trunk
05:35
Avoid mallocing zero bytes in the event log Copy processing, which was apparently a problem for compilers other than Visual C. Thanks to Roman Pompejus for pointing it out. check-in: 5caa8fa87b user: simon tags: trunk
2001-01-31
03:10
Add zlib_freetable() to prevent memory leaks. Thanks to Kevin Eric Saunders check-in: 04b0ae2606 user: simon tags: trunk
2001-01-30
18:28
This time, a working version of the pscp docs. check-in: 5922543b52 user: owen tags: trunk
18:25
More pscp documentation. check-in: 7be1300fe6 user: owen tags: trunk
2001-01-29
11:26
More stuff is written. check-in: c27c0fdb11 user: simon tags: trunk
09:10
Don't forget to read any outstanding data on receipt of FD_CLOSE. Particularly useful for people speaking HTTP, Finger etc over raw connections. check-in: 47af7bf5e2 user: simon tags: trunk
08:49
Robert de Bath's TCP Urgent / Telnet SYNCH patch. check-in: dae404c16f user: simon tags: trunk
08:31
Prevent "Connection closed" message box from appearing after the "Network error" box. The latter on its own is enough. check-in: 9a505cf629 user: simon tags: trunk
08:30
Prevent duplicate sk_close() calls on the same socket when the connection dies unexpectedly (CONNABORTED / CONNRESET) check-in: edd16e834d user: simon tags: trunk
07:19
Remove a segfault in bombout() macro: don't sk_close() the socket if it's already NULL. The `Incorrect MAC' problem was causing ssh2_rdpkt to bombout(), setting s to NULL, and then a secondary bombout() was happening at the next level up, causing a segfault. check-in: 51b9f5b532 user: simon tags: trunk
2001-01-28
08:38
Instructions on setting PATH more permanently. check-in: b092443bae user: owen tags: trunk
08:27
More options documented check-in: d11e573be5 user: owen tags: trunk
08:00
Use the PuTTY site's CSS stylesheet. Add Contact mail address to the page footer. check-in: 82e9fb1907 user: owen tags: trunk
2001-01-27
11:49
Documentation for -P and -pw check-in: 3fa3d91b66 user: owen tags: trunk
10:26
A start at some proper PSCP documentation check-in: e1c2dc9073 user: owen tags: trunk
09:51
Remove -gui from the command-line help in pscp, because it's an internal option only. check-in: 7f9d2b3e36 user: simon tags: trunk
2001-01-26
12:50
Fix the SSH2 key re-exchange bug. Session id != exchange hash, because the session id is the exchange hash from the _first_ key exchange, so in subsequent key exchanges they're different. check-in: 8ff44d5b9d user: simon tags: trunk
06:22
Ensure all backends _remember_ the connection has closed after receiving a network error. Should prevent the cascading-error-box bug. check-in: 6942ae0f1a user: simon tags: trunk
03:48
Jacob's patch to fix all the accelerators. AGAIN. check-in: b8078eef9c user: simon tags: trunk
03:33
Fix build errors in PSCP after line discipline upheaval check-in: 259c83c009 user: simon tags: trunk
2001-01-24
08:55
Use `default_port' rather than `22' when loading a default session. check-in: 29621124d4 user: simon tags: trunk
08:08
Rethink the whole line discipline architecture. Instead of having multiple switchable line disciplines, we now have a single unified one which changes its behaviour based on option settings. Each option setting can be suggested by the back end and/or the terminal handler, and can be forcibly overridden by the configuration. Local echo and local line editing are separate, independently switchable, options. check-in: d2a045d8e1 user: simon tags: trunk
04:11
Improve socket error handling so that a socket error isn't an automatic fatalbox(). Instead, the error is passed to the receiver routine, which can decide just how fatal the problem really is. check-in: d2802d2956 user: simon tags: trunk
03:29
Ahem. The log-file Browse button should set cfg.logfilename and not cfg.keyfile. Next time I copy and paste a huge chunk of code, I should take more care about it :-/ check-in: 3871bb8535 user: simon tags: trunk
2001-01-23
11:40
Roman Pompejus's suggestion: do sensible things with focus when the event log window appears or disappears. check-in: 4cdb496284 user: simon tags: trunk
11:37
Roman Pompejus's fix for the TAB-not-working-in-Event-Log bug check-in: 3c6a9820e7 user: simon tags: trunk
08:20
When the SSH panel disappears in puttytel, the Tunnels panel should too! check-in: a7c0af232a user: simon tags: trunk
05:02
Remove the entirely pointless fourth parameter from x11_init(). check-in: 5be6940dc1 user: simon tags: trunk
04:19
Fix a subtle bug affecting multiple-socket handling in Plink. (Was interfering with X forwarding.) Details of bug: the event object used as the target of WSAEventSelect is created in such a way that it is automatically reset when it releases a thread from WaitFor*Objects. Subsequently, a read on the first socket in the list causes another network event if not all the available data was read; thus the event object is set again. Then, WSAEnumNetworkEvents is called again for the _second_ socket, and is passed the network event, which it therefore resets. So an event has been dropped, and things only get restarted when some more data arrives on the first socket. check-in: 400ef788d3 user: simon tags: trunk
2001-01-22
11:25
Update puttygen GUI code to use Jeremy Sawicki's better group boxes check-in: 691481e5fc user: simon tags: trunk
11:24
Add dependencies for puttygen.c check-in: d58e69cacf user: simon tags: trunk
11:24
Clean up a couple of trivial compiler warnings. check-in: 29cff11599 user: simon tags: trunk
11:17
Jeremy Sawicki's fix for the multiple-conflicting-accelerators problems: controls are now destroyed and recreated on a panel switch. In addition, this patch also introduces a better means of doing the group boxes. check-in: 9f716a9c9b user: simon tags: trunk
10:38
Ability to hide the mouse pointer on a keypress a la Word check-in: e5b34e2fac user: simon tags: trunk
09:36
Bring the SSH2 channel architecture up to scratch, enabling X forwarding to work under SSH2. Also - surprise! - implement X forwarding under SSH2. check-in: eaa1421496 user: simon tags: trunk
07:32
Update the file list in .cvsignore check-in: d2d1f165d1 user: simon tags: trunk
07:15
Add a title to the Tunnels panel check-in: db2da24bb3 user: simon tags: trunk
06:35
Try the blindingly-obvious fix for the hidden-controls-are-still- accessible GUI bug. check-in: b6c382f8ab user: simon tags: trunk
05:34
Add X11 forwarding, mainly thanks to Andreas Schultz check-in: ac34515183 user: simon tags: trunk
2001-01-20
05:00
Make sure it's SSH, and not Rlogin, which gets omitted from the PuTTYtel config box. Oops! check-in: caed58cea0 user: simon tags: trunk
2001-01-19
04:10
Experimental Rlogin support, thanks to Delian Delchev. Local flow control is unsupported, and server-to-client comms may fail for want of working TCP Urgent. check-in: da6b4093b4 user: simon tags: trunk
03:01
Keepalives are now in seconds not minutes check-in: 848d3511b0 user: simon tags: trunk
2001-01-18
11:29
Add a .cvsignore file check-in: 170183088b user: simon tags: trunk
2001-01-17
11:25
The `wrapnext' variable now states whether we _would_ wrap next character if we were wrapping, not whether we _will_ wrap next character. Makes for saner behaviour with vertical-line cursor and also when changing autowrap mode while on rightmost column. Does entail small behavioural changes to backspace and destructive- backspace when in rightmost column with Auto Wrap off, but I don't think they should be catastrophic, or indeed that there's a well defined Right Behaviour. check-in: 1268f6737a user: simon tags: trunk
11:20
Tidy up that latest checkin. PS_DOTTED is spelled PS_DOT and in any case doesn't really cut it; we have to SetPixel every other one manually because although PS_ALTERNATE exists it only works under NT. Meanwhile, IDC_CURSTATIC was already used, for the cursor _keys_. Duh. check-in: ddf71499af user: simon tags: trunk
10:57
Introduce alternative cursor shapes: underline, vertical line check-in: e2c48178f1 user: simon tags: trunk
10:57
Trivial fix for when the two directions select different encryption algorithms check-in: c5de262295 user: simon tags: trunk
10:33
Further work on writing the manual check-in: 7b1e64bc51 user: simon tags: trunk
06:46
Continue writing documentation. Looks like a long job :-( check-in: 17a02ba753 user: simon tags: trunk
04:11
Initial checkin of an outline for the PuTTY user manual. check-in: 771beaaf03 user: simon tags: trunk
2001-01-11
07:19
Remove rogue debug statement check-in: 09024141b8 user: simon tags: trunk
2001-01-09
11:25
IPv4 numeric addresses were broken thanks to IPv6 patch check-in: e807c51eed user: simon tags: trunk
11:16
Oops - accidentally undid rev 1.82 [r844] check-in: d817959ee0 user: simon tags: trunk
2001-01-08
10:28
Enable explicit changing of the window title after session start check-in: aaeb10004c user: simon tags: trunk
10:24
Disable logging completely if the user selects Cancel when told the file already exists check-in: a2fc91fd2c user: simon tags: trunk
07:57
Ensure ssh specials (EOF and PING) don't occur except in connection states where they're meaningful. In case Plink misses an EOF by attempting to send it before reaching SSH_STATE_SESSION, it is buffered and sent later. PINGs can be sent during any part of the initialisation phase _except_ before deciding whether to use protocol 1 or 2. check-in: d9a5cfe18b user: simon tags: trunk
2001-01-07
13:16
Jeroen Massar's IPv6 patch. Disabled by default, for now. check-in: 4646b62243 user: simon tags: trunk
13:15
Fix for spurious Space getting sent when alt_space and alt_only are both set and you bring up the Sysmenu with an alt_space and dispatch it with an alt_only. (The SYSKEYDOWN for alt_only is never received, but we get the SYSKEYUP which PostMessages the space since it expects to be triggering the _creation_ of a sysmenu. Solution: set alt_state to 0 when an alt_space triggers a sysmenu, so that the final SYSKEYUP will be seen as spurious, which it is. Perhaps we could do this better.) check-in: add0639425 user: simon tags: trunk
12:28
Kestutis Kupciunas's Lithuanian-friendliness patch to TranslateKey check-in: 44e495b996 user: simon tags: trunk
12:24
Improved session logging courtesy of Roman Pompejus check-in: 1df3fef130 user: simon tags: trunk
11:18
Squelch some spurious resize events. check-in: 23269ced0c user: simon tags: trunk
11:18
Adam D Ligas's segfault: one form of connection closure was failing to set SSH_STATE_CLOSED, causing subsequent resize events to go foom. check-in: 9bf6fbf735 user: simon tags: trunk
10:38
Oops - that do-we-need-to-resize-window check failed to spot font changes check-in: 0bc2bf0ff0 user: simon tags: trunk
10:35
Fix the System Caret so it really is invisible, and the right size too. check-in: a574cdd922 user: simon tags: trunk
10:27
`Change Settings' now behaves sensibly w.r.t. window size. check-in: eae8ad51cc user: simon tags: trunk
09:27
Turn a rogue malloc to smalloc check-in: 6e73bcca6c user: simon tags: trunk
09:12
Apply `getservbyname' to the Port Number field in case it's non-numeric. Patch due to Christian Biesinger. check-in: 08e1baff3f user: simon tags: trunk
08:30
AltGr should now work again even when Compose key disabled check-in: 2c4038fa5b user: simon tags: trunk
07:39
Make the colour list failsafe. Patch due to Robert de Bath check-in: 1827f40db5 user: simon tags: trunk
07:31
Patch from Christian Biesinger: pscp guesses your Windows username by default check-in: ca7e00ef21 user: simon tags: trunk
2000-12-18
03:20
Apply improved WinSock error handling to the few situations it still hadn't been applied to. check-in: a4b94cebe6 user: simon tags: trunk
03:20
Attempt to get repeated key exchange working in SSH2. Still under test - might not be 100%. I think it _ought_ to work though. check-in: 1cf3831915 user: simon tags: trunk
2000-12-12
08:04
Remove unnecessary printfs from Minefield check-in: 0385d044d3 user: simon tags: trunk
05:07
Fix an intermittent segfault that prevented the new Zlib compression from being very useful. (Thanks to Minefield for catching it.) check-in: b5b8638aa8 user: simon tags: trunk
04:57
Added Minefield: an alternative memory allocator along the lines of Electric Fence. Enable by compiling with /DMINEFIELD. check-in: 19ecd40b6f user: simon tags: trunk
04:33
Make memory management uniform: _everything_ now goes through the smalloc() macros and thence to the safemalloc() functions in misc.c. This should allow me to plug in a debugging allocator and track memory leaks and segfaults and things. check-in: 6f56ef599a user: simon tags: trunk