SSH: Add infrastructure for passing additional connection options.

So far, the only option is whether to use the default proxy or not. More
will follow.

Change-Id: Icd1ec407a0269cc8e7577901853d3873fd03015c
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Christian Kandeler
2012-10-01 14:51:27 +02:00
parent 41b963934d
commit 6c1b0fc80d
5 changed files with 14 additions and 8 deletions

View File

@@ -1797,7 +1797,7 @@ void DebuggerPluginPrivate::startRemoteEngine()
sp.connParams.timeout = 5;
sp.connParams.authenticationType = QSsh::SshConnectionParameters::AuthenticationByPassword;
sp.connParams.port = 22;
sp.connParams.proxyType = QSsh::SshConnectionParameters::NoProxy;
sp.connParams.options = QSsh::SshIgnoreDefaultProxy;
sp.executable = dlg.inferiorPath();
sp.serverStartScript = dlg.enginePath();