Kick from edge forward

This commit is contained in:
2023-08-01 11:25:31 +01:00
parent 9a8aca72ab
commit 0634622c4d
20 changed files with 523 additions and 74 deletions

View File

@ -27,6 +27,16 @@ public class UserStream
public Guid EndpointId { get; init; }
public IngestEndpoint Endpoint { get; init; } = null!;
/// <summary>
/// Publisher edge IP
/// </summary>
public string EdgeIp { get; set; } = null!;
/// <summary>
/// Publisher edge client id
/// </summary>
public string ForwardClientId { get; set; } = null!;
public List<UserStreamGuest> Guests { get; init; } = new();
public List<UserStreamRecording> Recordings { get; init; } = new();