mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07: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
|