summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2012-11-24 23:11:37 +0000
committerJon TURNEY <jon.turney@dronecode.org.uk>2013-02-28 14:14:03 +0000
commit8d9b6d472891081d9ff0dc3799a93cdd219f679c (patch)
treed1f62c6aa959cfa95aae16b41efcec228b732104 /config.h
parentb028cdc93c95bd8766fdca41285aac0cc03770dc (diff)
Add ability to add extra options to the ssh command linexlaunch-20130301-1
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/config.h b/config.h
index ae7007f..070c175 100644
--- a/config.h
+++ b/config.h
@@ -48,6 +48,7 @@ struct CConfig
std::string extra_params;
bool keychain;
bool terminal;
+ std::string extra_ssh;
CConfig() : window(MultiWindow),
client(NoClient),
local(true),
@@ -69,7 +70,8 @@ struct CConfig
xdmcpterminate(false),
extra_params(),
keychain(false),
- terminal(true)
+ terminal(true),
+ extra_ssh()
{
};
void Load(const char * filename);