Differences From Artifact [dc2faae688]:
- File ssh.c — part of check-in [25f79c1e9a] at 2004-12-28 08:10:32 on branch trunk — Support reconfiguration of key exchange in mid-session. The fiddly bit is working out when to reschedule the next rekey for when the timeout or data limit changes; sometimes it will be _right now_ because we're already over the new limit. Still to do: the Kex panel should not appear in mid-session if we are using SSHv1. (user: simon size: 231706)
To Artifact [eeb6dc1ee3]:
- File ssh.c — part of check-in [8a11a858c7] at 2004-12-28 10:18:17 on branch trunk — Forgot to initialise ssh->portfwds to NULL. Unusually, this was pointed out by the MSVC debugger, not by valgrind :-) (user: simon size: 231732)
| ︙ | ︙ | |||
7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 |
ssh->frontend = frontend_handle;
ssh->term_width = ssh->cfg.width;
ssh->term_height = ssh->cfg.height;
ssh->channels = NULL;
ssh->rportfwds = NULL;
ssh->send_ok = 0;
ssh->editing = 0;
ssh->echoing = 0;
ssh->v1_throttle_count = 0;
ssh->overall_bufsize = 0;
ssh->fallback_cmd = 0;
| > | 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 |
ssh->frontend = frontend_handle;
ssh->term_width = ssh->cfg.width;
ssh->term_height = ssh->cfg.height;
ssh->channels = NULL;
ssh->rportfwds = NULL;
ssh->portfwds = NULL;
ssh->send_ok = 0;
ssh->editing = 0;
ssh->echoing = 0;
ssh->v1_throttle_count = 0;
ssh->overall_bufsize = 0;
ssh->fallback_cmd = 0;
|
| ︙ | ︙ |