summaryrefslogtreecommitdiff
path: root/gui/handlers.cpp
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2021-05-28 12:26:11 +0200
committerkali kaneko (leap communications) <kali@leap.se>2021-06-01 12:31:48 +0200
commit1bd2637e3133d895d1e73931f8b3466a5761d9ef (patch)
tree1bd75f2a91f30d996030a8531fefbb29f7c41831 /gui/handlers.cpp
parentc6c0209ad45fb7d2e45370ee3a39f2dd437603b0 (diff)
[feat] expose set transport
webapi mainly for tests, but it's usable too
Diffstat (limited to 'gui/handlers.cpp')
-rw-r--r--gui/handlers.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/gui/handlers.cpp b/gui/handlers.cpp
index 9f68834..cec43ca 100644
--- a/gui/handlers.cpp
+++ b/gui/handlers.cpp
@@ -52,6 +52,16 @@ void Backend::useAutomaticGateway()
UseAutomaticGateway();
}
+void Backend::useTransport(QString transport)
+{
+ UseTransport(toGoStr(transport));
+}
+
+QString Backend::getTransport()
+{
+ return QString(GetTransport());
+}
+
void Backend::login(QString username, QString password)
{
Login(toGoStr(username), toGoStr(password));