From b6bd39660f99e0f683674bd1cb50beb56625056f Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 9 Dec 2025 17:03:16 +0000 Subject: [PATCH] IPC: rename relay socket to gateway.sock --- CHANGELOG.md | 2 +- src/web/ipc.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee85b26b2..6adfd9bd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -123,7 +123,7 @@ First Clawdis release after the Warelay rebrand. This is a semver-major because - Web send respects media kind (image/audio/video/document) with correct limits. ### Changes -- IPC relay socket at `~/.clawdis/relay.sock` with automatic CLI fallback. +- IPC gateway socket at `~/.clawdis/ipc/gateway.sock` with automatic CLI fallback. - Batched inbound messages with timestamps; typing indicator after IPC sends. - Watchdog restarts WhatsApp after long inactivity; heartbeat logging includes minutes since last message. - Early `allowFrom` filtering before decryption. diff --git a/src/web/ipc.ts b/src/web/ipc.ts index bc982a545..bd229f478 100644 --- a/src/web/ipc.ts +++ b/src/web/ipc.ts @@ -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";