
* Crash fix in management server * Openvpn scripts fixes some refactoring * deploy fix * Scripts fix for macos * OpenVpn runtime error codes handling * MacOS deploy script fix * easyrsa scripts for MacOS * Refactoring Ui improvements Bug fixes * new server page fix * Fix some warnings, fix installation scripts (macOS) * Fix crash on fatal error, remove moc files from Windows installation * ss files * Fix issue with easyrsa * ss files * shadowsocks impl * ss fix * ui fix * Macos doc icon * travis scripts * server scripts fix * icon changed * Server scripts fix * travis fix * Bug fixes: - auto install tap - share connectionState - service crash fix * travis release * macos deploy
24 lines
720 B
C++
24 lines
720 B
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <QString>
|
|
|
|
class Utils {
|
|
|
|
public:
|
|
static QString configPath();
|
|
static QString defaultVpnConfigFileName();
|
|
static QString executable(const QString& baseName, bool absPath);
|
|
static QString serverName();
|
|
static QString systemLogPath();
|
|
static QString toString(bool value);
|
|
static bool createEmptyFile(const QString& path);
|
|
static bool initializePath(const QString& path);
|
|
static bool processIsRunning(const QString& fileName);
|
|
|
|
static QString getIPAddress(const QString& host);
|
|
static QString getStringBetween(const QString& s, const QString& a, const QString& b);
|
|
static bool checkIPFormat(const QString& ip);
|
|
};
|
|
|
|
#endif // UTILS_H
|