aboutsummaryrefslogtreecommitdiff
path: root/common/packets.d.ts
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2022-09-09 12:45:37 +0200
committermetamuffin <metamuffin@disroot.org>2022-09-09 12:45:37 +0200
commite590ea788aefe0714bb9ce24976303566a648d42 (patch)
treed6b3d827512af388fe0ea4f2ac1c2f1fc983178a /common/packets.d.ts
parentb25bbae82f9bfaf6f37dfb16e07708060dd3df55 (diff)
downloadkeks-meet-e590ea788aefe0714bb9ce24976303566a648d42.tar
keks-meet-e590ea788aefe0714bb9ce24976303566a648d42.tar.bz2
keks-meet-e590ea788aefe0714bb9ce24976303566a648d42.tar.zst
reworked websocket stuff with encryption and new spec
Diffstat (limited to 'common/packets.d.ts')
-rw-r--r--common/packets.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/packets.d.ts b/common/packets.d.ts
index 49ab295..fe3be33 100644
--- a/common/packets.d.ts
+++ b/common/packets.d.ts
@@ -6,7 +6,7 @@ interface F_RTCIceCandidateInit { candidate?: string; sdpMLineIndex?: number | n
export interface ClientboundPacket {
init?: { your_id: number, version: string },
- client_join?: { id: number, name: string },
+ client_join?: { id: number },
client_leave?: { id: number },
message?: { sender: number, message: string },
}