added websocket todos

This commit is contained in:
2026-04-03 19:44:22 -04:00
parent 941dcc16d9
commit b7af055845

View File

@@ -30,6 +30,8 @@ app.MapRtcEndpoints();
var wssv = new WebSocketServer("ws://localhost:1337");
wssv.AddWebSocketService<ChatSocketBehavior>("/");
//TODO: Create WebSocket message system which can alert clients already connected to a channel of changes to offer, answers, and ice candidates
//TODO: Use AnswerCallback as a test on client and use the /rtc/answer endpoint call as a test on server
wssv.Start();
Console.WriteLine("WebSocket server started");