IPC: rename relay socket to gateway.sock
parent
959ba94eca
commit
b6bd39660f
|
|
@ -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.
|
- Web send respects media kind (image/audio/video/document) with correct limits.
|
||||||
|
|
||||||
### Changes
|
### 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.
|
- Batched inbound messages with timestamps; typing indicator after IPC sends.
|
||||||
- Watchdog restarts WhatsApp after long inactivity; heartbeat logging includes minutes since last message.
|
- Watchdog restarts WhatsApp after long inactivity; heartbeat logging includes minutes since last message.
|
||||||
- Early `allowFrom` filtering before decryption.
|
- Early `allowFrom` filtering before decryption.
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ import { getChildLogger } from "../logging.js";
|
||||||
import { CONFIG_DIR } from "../utils.js";
|
import { CONFIG_DIR } from "../utils.js";
|
||||||
|
|
||||||
const SOCKET_DIR = path.join(CONFIG_DIR, "ipc");
|
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 {
|
export interface IpcSendRequest {
|
||||||
type: "send";
|
type: "send";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue