Differences From Artifact [f97804cdfb]:
- File config.c — part of check-in [b0fa9fd94c] at 2005-01-09 05:44:21 on branch trunk — I've changed my mind about what the IP version selection options in the config should do when IPv6 is configured out. They shouldn't sit there looking silly with only `Auto' and `IPv4' settings: they should instead be completely absent. I had thought the former was acceptable since IPv4-only was a configuration that people should only be using if their compilers didn't support IPv6, but now it occurs to me that ports to fundamentally non-IPv6-supporting platforms are not implausible, and on such ports the presence of a vestigial config option under the _standard_ build conditions would be a low-quality solution. (user: simon size: 61540)
To Artifact [73aa6cc780]:
- File config.c — part of check-in [ed28fd9a5d] at 2005-01-11 04:37:55 on branch trunk — Servers announcing themselves as `Sun_SSH_1.0' apparently cannot deal with rekeys at all: they totally ignore mid-session KEXINIT sent by the client. Hence, a new bug entry so we don't try it. (user: simon size: 61697)
| ︙ | |||
1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 | 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 | + + + |
sshbug_handler, I(offsetof(Config,sshbug_derivekey2)));
ctrl_droplist(s, "Requires padding on SSH2 RSA signatures", 'p', 20,
HELPCTX(ssh_bugs_rsapad2),
sshbug_handler, I(offsetof(Config,sshbug_rsapad2)));
ctrl_droplist(s, "Misuses the session ID in PK auth", 'n', 20,
HELPCTX(ssh_bugs_pksessid2),
sshbug_handler, I(offsetof(Config,sshbug_pksessid2)));
ctrl_droplist(s, "Ignores key re-exchange completely", 'k', 20,
HELPCTX(ssh_bugs_rekey2),
sshbug_handler, I(offsetof(Config,sshbug_rekey2)));
}
}
}
|