Add ssh related flags

This commit is contained in:
Zoltán Papp
2025-12-30 10:05:57 +01:00
parent ce79108d55
commit fda2146b48

View File

@@ -438,6 +438,12 @@ func setupSetConfigReqForLogin(cfg *proto.GetConfigResponse, profileName, userna
req.DisableNotifications = &cfg.DisableNotifications
req.LazyConnectionEnabled = &cfg.LazyConnectionEnabled
req.BlockInbound = &cfg.BlockInbound
req.DisableSSHAuth = &cfg.DisableSSHAuth
req.EnableSSHRoot = &cfg.EnableSSHRoot
req.EnableSSHSFTP = &cfg.EnableSSHSFTP
req.EnableSSHLocalPortForwarding = &cfg.EnableSSHLocalPortForwarding
req.EnableSSHRemotePortForwarding = &cfg.EnableSSHRemotePortForwarding
req.SshJWTCacheTTL = &cfg.SshJWTCacheTTL
return &req
}