-
Notifications
You must be signed in to change notification settings - Fork 393
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WireGuard rework for MacOS and Windows #314
Conversation
update MacOS service
client/daemon/daemonlocalserver.cpp
Outdated
@@ -76,12 +76,12 @@ QString DaemonLocalServer::daemonPath() const { | |||
} | |||
|
|||
if (dir.exists("amneziavpn")) { | |||
logger.debug() << "/var/run/amneziavpn seems to be usable"; | |||
logger.debug() << "/var/run/amnezia seems to be usable"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
check if (dir.exists("amneziavpn")) - but message about "/var/run/amnezia" - looks like it's typo?
client/daemon/daemonlocalserver.cpp
Outdated
return VAR_PATH; | ||
} | ||
|
||
if (!dir.mkdir("amneziavpn")) { | ||
logger.warning() << "Failed to create /var/run/amneziavpn"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
@@ -14,10 +13,14 @@ | |||
#include <QJsonValue> | |||
#include <QStandardPaths> | |||
|
|||
//#include "errorhandler.h" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please cleanup unnecessary commented lines
Use new background WG service for vpn tunnel.