IPC: rename relay socket to gateway.sock

This commit is contained in:
Peter Steinberger
2025-12-09 17:03:16 +00:00
parent 959ba94eca
commit b6bd39660f
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ import { getChildLogger } from "../logging.js";
import { CONFIG_DIR } from "../utils.js";
const SOCKET_DIR = path.join(CONFIG_DIR, "ipc");
const SOCKET_PATH = path.join(SOCKET_DIR, "relay.sock");
const SOCKET_PATH = path.join(SOCKET_DIR, "gateway.sock");
export interface IpcSendRequest {
type: "send";