mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
14 lines
364 B
C++
14 lines
364 B
C++
#include "vpn_dbus.h"
|
|
|
|
void VpnDbus::connect(const QString &preferredServer, const QList<QString> &servers, const QString &username, const QString &passwd, const QString &extraArgs) {
|
|
inner->connect(preferredServer, username, passwd, extraArgs);
|
|
}
|
|
|
|
void VpnDbus::disconnect() {
|
|
inner->disconnect();
|
|
}
|
|
|
|
int VpnDbus::status() {
|
|
return inner->status();
|
|
}
|