| 52 | |
| 53 | |
| 54 | const std::string GetLocalServiceBindAddress() { |
| 55 | #ifdef __linux__ |
| 56 | return "ipc://" + GetHomeDir() + "/tadsim-service.sock"; |
| 57 | #endif // __linux__ |
| 58 | #ifdef _WIN32 |
| 59 | return "tcp://127.0.0.1:8401"; |
| 60 | #endif // _WIN32 |
| 61 | } |
| 62 | |
| 63 | |
| 64 | #ifdef _WIN32 |