jellyfin/Emby.Dlna/Server/UpnpDevice.cs

38 lines
924 B
C#
Raw Normal View History

2016-10-30 00:22:20 +02:00
using System;
using System.Net;
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.Server
2016-10-30 00:22:20 +02:00
{
public sealed class UpnpDevice
{
public readonly Uri Descriptor;
public readonly string Type;
public readonly string USN;
public readonly string Uuid;
public readonly IPAddress Address;
public UpnpDevice(string aUuid, string aType, Uri aDescriptor, IPAddress address)
{
Uuid = aUuid;
Type = aType;
Descriptor = aDescriptor;
Address = address;
USN = CreateUSN(aUuid, aType);
}
private static string CreateUSN(string aUuid, string aType)
{
if (aType.StartsWith("uuid:", StringComparison.OrdinalIgnoreCase))
{
return aType;
}
else
{
return String.Format("uuid:{0}::{1}", aUuid, aType);
}
}
}
}