| 234 | // ── Utility ───────────────────────────────────────────────────────── |
| 235 | |
| 236 | std::string GetSocketPath(const std::string& vm_id) { |
| 237 | const char* tmpdir = getenv("TMPDIR"); |
| 238 | if (!tmpdir) tmpdir = "/tmp"; |
| 239 | return std::string(tmpdir) + "/tenbox_vm_" + vm_id + ".sock"; |
| 240 | } |
| 241 | |
| 242 | } // namespace ipc |
nothing calls this directly
no outgoing calls
no test coverage detected