17 lines
412 B
C#
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);
|
|
}
|
|
}
|