Open remote host for devices starting with dic://

This commit is contained in:
2019-10-13 21:17:38 +01:00
parent 7fd5b16b1d
commit 6a4e2acb56
2 changed files with 307 additions and 265 deletions

View File

@@ -38,18 +38,18 @@ namespace DiscImageChef.Devices
{
public partial class Device
{
readonly ushort usbVendor;
readonly ushort usbProduct;
readonly ulong firewireGuid;
readonly uint firewireModel;
readonly uint firewireVendor;
private readonly ushort usbVendor;
private readonly ushort usbProduct;
private readonly ulong firewireGuid;
private readonly uint firewireModel;
private readonly uint firewireVendor;
// MMC and SecureDigital, values that need to be get with card idle, something that may
// not be possible to do but usually is already done by the SDHCI driver.
readonly byte[] cachedCsd;
readonly byte[] cachedCid;
readonly byte[] cachedScr;
readonly byte[] cachedOcr;
private readonly byte[] cachedCsd;
private readonly byte[] cachedCid;
private readonly byte[] cachedScr;
private readonly byte[] cachedOcr;
/// <summary>
/// Gets the Platform ID for this device
@@ -217,5 +217,7 @@ namespace DiscImageChef.Devices
/// Contains the PCMCIA CIS if applicable
/// </summary>
public byte[] Cis { get; }
private readonly Remote.Remote remote;
}
}