skyscraper8/skyscraper8/SatIp/IRtspCache.cs

17 lines
412 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using skyscraper8.SimpleServiceDiscoveryProtocol;
namespace skyscraper8.SatIp
{
public interface IRtspCache
{
bool SsdpDeviceKnown(SsdpDevice ssdpDevice);
void SsdpStoreMetadata(SsdpDevice ssdpDevice, byte[] ssdpMetadataByteArray);
byte[] SsdpGetMetadata(SsdpDevice ssdpDevice);
}
}