summaryrefslogtreecommitdiffstats
path: root/src/winrtrunner/runnerengine.h
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@qt.io>2018-03-22 08:43:26 +0100
committerSami Nurmenniemi <sami.nurmenniemi@qt.io>2018-04-06 13:21:26 +0000
commit946d746980ba368e510eba1d17da81804a8c06a5 (patch)
treeef281079d169605debc95826aca98528a358aa5d /src/winrtrunner/runnerengine.h
parent5d1769c5a2145d760a2444aa0c3b91ce10ac38bb (diff)
winrtrunner: Add possibility to enable localhost capability for servers
Enabling localhost access for servers needs a loopbackexempt debug session to be running while the application runs. This debug session has to be started with elevated rights so the user might be asked for confirmation, before the application can be launched. This feature was introduced with Windows 10.0.14393.0. [ChangeLog][winrtrunner][feature] Added ability to enable loopback exemption for servers. This basically enables UWP applications to react on socket connections that are made from the same machine for debugging purposes. Change-Id: Iddf0c88657607075d85c4d9b326c8cd8b9771fa8 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Andre de la Rocha <andre.rocha@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 da3b1be36..4cdd8f36f 100644
--- a/src/winrtrunner/runnerengine.h
+++ b/src/winrtrunner/runnerengine.h
@@ -54,6 +54,7 @@ public:
virtual bool enableDebugging(const QString &debugger, const QString &debuggerArguments) = 0;
virtual bool disableDebugging() = 0;
virtual bool setLoopbackExemptClientEnabled(bool enabled) = 0;
+ virtual bool setLoopbackExemptServerEnabled(bool enabled) = 0;
virtual bool suspend() = 0;
virtual bool waitForFinished(int secs) = 0;
virtual bool stop() = 0;