skeletons of fun

This commit is contained in:
Kevin Puig
2025-09-28 06:14:22 -04:00
parent 7c5d0a4bad
commit 5a5afcec32

View File

@@ -175,5 +175,20 @@ export function registerVoiceHandlers(io: Server) {
});
}
});
// Handle WebRTC Offer
socket.on("webrtc-offer", async (data) => {
// Implementation for handling WebRTC offer
});
// Handle WebRTC Answer
socket.on("webrtc-answer", async (data) => {
// Implementation for handling WebRTC answer
});
// Handle ICE Candidates
socket.on("webrtc-ice-candidate", async (data) => {
// Implementation for handling ICE candidates
});
});
}