Write remote information in dump log.

This commit is contained in:
2019-10-21 23:36:57 +01:00
parent 92384ac816
commit 8a0d073c27
2 changed files with 53 additions and 35 deletions

View File

@@ -219,5 +219,13 @@ namespace DiscImageChef.Devices
public byte[] Cis { get; }
private readonly Remote.Remote remote;
public bool IsRemote => remote != null;
public string RemoteApplication => remote?.ServerApplication;
public string RemoteVersion => remote?.ServerVersion;
public string RemoteOperatingSystem => remote?.ServerOperatingSystem;
public string RemoteOperatingSystemVersion => remote?.ServerOperatingSystemVersion;
public string RemoteArchitecture => remote?.ServerArchitecture;
public int RemoteProtocolVersion => remote?.ServerProtocolVersion ?? 0;
}
}