summaryrefslogtreecommitdiffstats
path: root/src/sdk/commandlineparser.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@theqtcompany.com>2015-02-10 16:21:26 +0100
committerKai Koehne <kai.koehne@theqtcompany.com>2015-02-20 10:22:28 +0000
commitd6bca86cad962a0078c2a8111133cff123f1ba0a (patch)
tree0f8cf9863c04675c24efe2bf6b0aa023a56a0f4c /src/sdk/commandlineparser.cpp
parent0ff36e52afb503a99c8fded093d25321a46b3d19 (diff)
Use local sockets for client-server communication
Change-Id: I12bfef671ab31ae9fb8c4bb02776517e7f434d27 Task-number: QTIFW-228 Reviewed-by: Karsten Heimrich <karsten.heimrich@theqtcompany.com>
Diffstat (limited to 'src/sdk/commandlineparser.cpp')
-rw-r--r--src/sdk/commandlineparser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sdk/commandlineparser.cpp b/src/sdk/commandlineparser.cpp
index d1af0d97e..23e9a5dfc 100644
--- a/src/sdk/commandlineparser.cpp
+++ b/src/sdk/commandlineparser.cpp
@@ -97,12 +97,12 @@ CommandLineParser::CommandLineParser()
QLatin1String("Starts the application as headless process waiting for commands to execute."
" Mode can be DEBUG or PRODUCTION. In DEBUG mode, the option values can be omitted."
"Note: The server will not shutdown on his own, you need to quit the process by hand."),
- QLatin1String("mode,port,key")));
+ QLatin1String("mode,socketname,key")));
m_parser.addOption(QCommandLineOption(QLatin1String(CommandLineOptions::StartClient),
QString::fromLatin1("Starts the application to debug the client-server communication. If "
"a value is omitted, the client will use a default instead. Note: The server process is "
"not started by the client application in that case, you need to start it on your own."),
- QLatin1String("port,key")));
+ QLatin1String("socketname,key")));
m_parser.addPositionalArgument(QLatin1String(CommandLineOptions::KeyValue),
QLatin1String("Key Value pair to be set."));