2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
2015-01-03 15:37:29 +00:00
|
|
|
public class JitterBufStatsEvent : ManagerEvent
|
|
|
|
{
|
|
|
|
public JitterBufStatsEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public string Owner { get; set; }
|
|
|
|
|
|
|
|
public int Ping { get; set; }
|
|
|
|
|
|
|
|
public int LocalJitter { get; set; }
|
|
|
|
|
|
|
|
public int LocalJBDelay { get; set; }
|
|
|
|
|
|
|
|
public int LocalTotalLost { get; set; }
|
|
|
|
|
|
|
|
public int LocalLossPercent { get; set; }
|
|
|
|
|
|
|
|
public int LocalDropped { get; set; }
|
|
|
|
|
|
|
|
public int Localooo { get; set; }
|
|
|
|
|
|
|
|
public int LocalReceived { get; set; }
|
|
|
|
|
|
|
|
public int RemoteJitter { get; set; }
|
|
|
|
|
|
|
|
public int RemoteJBDelay { get; set; }
|
|
|
|
|
|
|
|
public int RemoteTotalLost { get; set; }
|
|
|
|
|
|
|
|
public int RemoteLossPercent { get; set; }
|
|
|
|
|
|
|
|
public int RemoteDropped { get; set; }
|
|
|
|
|
|
|
|
public int Remoteooo { get; set; }
|
|
|
|
|
|
|
|
public int RemoteReceived { get; set; }
|
|
|
|
}
|
|
|
|
}
|