1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-22 14:39:24 -05:00

Allow mid-session reconfiguration in PROT_SSHCONN.

Now you can adjust your port-forwarding configuration in mid-session,
in the same way that you can with an ordinary SSH connection.
This commit is contained in:
Simon Tatham 2020-05-01 18:08:20 +01:00
parent b951d05819
commit 4068416683

View File

@ -2439,7 +2439,8 @@ void setup_config_box(struct controlbox *b, bool midsession,
#define DISPLAY_NON_RECONFIGURABLE_PROTOCOL(which_proto) \ #define DISPLAY_NON_RECONFIGURABLE_PROTOCOL(which_proto) \
(backend_vt_from_proto(which_proto) && !midsession) (backend_vt_from_proto(which_proto) && !midsession)
if (DISPLAY_RECONFIGURABLE_PROTOCOL(PROT_SSH)) { if (DISPLAY_RECONFIGURABLE_PROTOCOL(PROT_SSH) ||
DISPLAY_RECONFIGURABLE_PROTOCOL(PROT_SSHCONN)) {
/* /*
* The Connection/SSH panel. * The Connection/SSH panel.
*/ */