Added WebRTC stuff - Needs Testing.

This commit is contained in:
2026-03-29 15:18:57 -04:00
parent 0bb3aa28b1
commit 8c6724038a
8 changed files with 417 additions and 170 deletions

View File

@@ -0,0 +1,13 @@
namespace RelayServer.Models;
public class RtcSignalMessage
{
public required string Type { get; set; } // rtc_offer / rtc_answer / rtc_ice_candidate / rtc_call_request / rtc_call_accept / rtc_call_reject
public required string From { get; set; }
public required string To { get; set; }
public string? Sdp { get; set; }
public string? Candidate { get; set; }
public string? SdpMid { get; set; }
public int? SdpMLineIndex { get; set; }
}