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

@@ -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.

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";