2019-01-13 19:54:44 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
namespace Emby.Dlna.Configuration
|
2014-03-10 17:38:53 +00:00
|
|
|
{
|
|
|
|
public class DlnaOptions
|
|
|
|
{
|
|
|
|
public bool EnablePlayTo { get; set; }
|
2014-03-24 12:47:39 +00:00
|
|
|
public bool EnableServer { get; set; }
|
2016-02-12 04:33:14 +00:00
|
|
|
public bool EnableDebugLog { get; set; }
|
2014-04-20 05:21:08 +00:00
|
|
|
public bool BlastAliveMessages { get; set; }
|
2019-02-22 04:06:49 +00:00
|
|
|
public bool SendOnlyMatchedHost { get; set; }
|
2014-03-23 20:49:05 +00:00
|
|
|
public int ClientDiscoveryIntervalSeconds { get; set; }
|
2014-04-20 05:21:08 +00:00
|
|
|
public int BlastAliveMessageIntervalSeconds { get; set; }
|
|
|
|
public string DefaultUserId { get; set; }
|
2014-03-16 01:41:27 +00:00
|
|
|
|
|
|
|
public DlnaOptions()
|
|
|
|
{
|
|
|
|
EnablePlayTo = true;
|
2014-03-24 12:47:39 +00:00
|
|
|
EnableServer = true;
|
2014-04-20 05:21:08 +00:00
|
|
|
BlastAliveMessages = true;
|
2019-02-22 04:06:49 +00:00
|
|
|
SendOnlyMatchedHost = true;
|
2014-03-23 22:21:49 +00:00
|
|
|
ClientDiscoveryIntervalSeconds = 60;
|
2018-09-12 17:26:21 +00:00
|
|
|
BlastAliveMessageIntervalSeconds = 1800;
|
2014-03-16 01:41:27 +00:00
|
|
|
}
|
2014-03-10 17:38:53 +00:00
|
|
|
}
|
|
|
|
}
|