summaryrefslogtreecommitdiffstats
path: root/src/winrtrunner/runnerengine.h
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@qt.io>2018-03-21 12:56:23 +0100
committerSami Nurmenniemi <sami.nurmenniemi@qt.io>2018-04-06 13:21:20 +0000
commite822ffb968ca1e6999de17db5b5d6d36b3825378 (patch)
treef1ebe223330a56d4760831a613a46505427d4816 /src/winrtrunner/runnerengine.h
parent70ac977a7293833fd5a4a467e217e64fd42b1a17 (diff)
winrtrunner: Add loopbackexempt command line option
loopbackexempt enables communication with localhost for winrt applications. As a first step, we allow client connections to localhost. localhost server capabilities are handled slighty different and will be done in a followup patch. [ChangeLog][winrtrunner][feature] Added ability to enable loopback exemption for clients. This basically enables UWP applications to connect to a local server for debugging purposes. Change-Id: I987130b22a9cfa19b0fa65316803bccea1977c3e Reviewed-by: Andre de la Rocha <andre.rocha@qt.io> Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io> Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io>
Diffstat (limited to 'src/winrtrunner/runnerengine.h')
-rw-r--r--src/winrtrunner/runnerengine.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/winrtrunner/runnerengine.h b/src/winrtrunner/runnerengine.h
index c56b1e1bd..da3b1be36 100644
--- a/src/winrtrunner/runnerengine.h
+++ b/src/winrtrunner/runnerengine.h
@@ -53,6 +53,7 @@ public:
virtual bool start() = 0;
virtual bool enableDebugging(const QString &debugger, const QString &debuggerArguments) = 0;
virtual bool disableDebugging() = 0;
+ virtual bool setLoopbackExemptClientEnabled(bool enabled) = 0;
virtual bool suspend() = 0;
virtual bool waitForFinished(int secs) = 0;
virtual bool stop() = 0;