diff --git a/RelayServer/Program.cs b/RelayServer/Program.cs index 26391be..6b6f2e3 100644 --- a/RelayServer/Program.cs +++ b/RelayServer/Program.cs @@ -30,6 +30,8 @@ app.MapRtcEndpoints(); var wssv = new WebSocketServer("ws://localhost:1337"); wssv.AddWebSocketService("/"); +//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");