17 lines
439 B
TypeScript
17 lines
439 B
TypeScript
|
/*
|
||
|
* Vencord, a Discord client mod
|
||
|
* Copyright (c) 2023 Vendicated and contributors
|
||
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
*/
|
||
|
|
||
|
import { createSocket, Socket } from "dgram";
|
||
|
|
||
|
let xsoSocket: Socket;
|
||
|
|
||
|
export function sendToOverlay(_, data: any) {
|
||
|
data.icon = Buffer.from(data.icon).toString("base64");
|
||
|
const json = JSON.stringify(data);
|
||
|
xsoSocket ??= createSocket("udp4");
|
||
|
xsoSocket.send(json, 42069, "127.0.0.1");
|
||
|
}
|