|
@@ -2,6 +2,9 @@
|
|
|
// Created by Tobias Hieta on 01/09/15.
|
|
|
//
|
|
|
|
|
|
+#include "settings/SettingsSection.h"
|
|
|
+#include "settings/SettingsComponent.h"
|
|
|
+#include "utils/Utils.h"
|
|
|
#include "Paths.h"
|
|
|
|
|
|
#include <QDir>
|
|
@@ -72,3 +75,16 @@ QString Paths::logDir(const QString& file)
|
|
|
return ldir.filePath(file);
|
|
|
#endif
|
|
|
}
|
|
|
+
|
|
|
+/////////////////////////////////////////////////////////////////////////////////////////
|
|
|
+QString Paths::socketName(const QString& serverName)
|
|
|
+{
|
|
|
+ QString userName = qgetenv("USER");
|
|
|
+
|
|
|
+ if(userName.isEmpty())
|
|
|
+ userName = qgetenv("USERNAME");
|
|
|
+ if(userName.isEmpty())
|
|
|
+ userName = "unknown";
|
|
|
+
|
|
|
+ return QString("pmp_%1_%2.sock").arg(serverName).arg(userName);
|
|
|
+}
|