mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
13 lines
244 B
C++
13 lines
244 B
C++
#ifndef IPC_H
|
|
#define IPC_H
|
|
|
|
#include <QString>
|
|
|
|
#define IPC_SERVICE_URL "local:AmneziaVpnIpcInterface"
|
|
|
|
namespace amnezia {
|
|
inline QString getIpcProcessUrl(int pid) { return QString("%1_%2").arg(IPC_SERVICE_URL).arg(pid); }
|
|
}
|
|
|
|
#endif // IPC_H
|