|
@@ -27,7 +27,7 @@ using InABox.Database;
|
|
|
using InABox.Database.SQLite;
|
|
|
using InABox.DeviceIdentifier;
|
|
|
using InABox.DynamicGrid;
|
|
|
-using InABox.IPC.Shared;
|
|
|
+using InABox.IPC;
|
|
|
using InABox.Scripting;
|
|
|
using InABox.Wpf.Editors;
|
|
|
using InABox.WPF;
|
|
@@ -372,7 +372,7 @@ namespace PRSServer
|
|
|
{
|
|
|
var client = IPCClientFactory.GetClient(DatabaseServerProperties.GetPipeName(key));
|
|
|
|
|
|
- var response = client.Send(PipeRequest.Info(new InfoRequest()), 10_000).GetResponse<InfoResponse>();
|
|
|
+ var response = client.Send(IPCMessage.Info(new InfoRequest()), 10_000).GetResponse<InfoResponse>();
|
|
|
if (response.Status != StatusCode.Error)
|
|
|
{
|
|
|
SecureConnections[key] = response.Info.IsHTTPS;
|
|
@@ -1088,7 +1088,7 @@ namespace PRSServer
|
|
|
currentServerPort = null;
|
|
|
currentServerURL = null;
|
|
|
currentServerName = pipeName;
|
|
|
- ClientFactory.SetClientType(typeof(PipeIPCClient<>), Platform.Server, CoreUtils.GetVersion(), pipeName);
|
|
|
+ ClientFactory.SetClientType(typeof(IPCClient<>), Platform.Server, CoreUtils.GetVersion(), pipeName);
|
|
|
using (new WaitCursor())
|
|
|
{
|
|
|
if (!Client.Ping())
|