-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
77 changed files
with
294 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...aries.Agent/Interfaces/IAgentInstaller.cs → ...gent.Common/Interfaces/IAgentInstaller.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
....Agent/Interfaces/IDeviceDataGenerator.cs → ...Common/Interfaces/IDeviceDataGenerator.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ies.Agent/Interfaces/IElevationChecker.cs → ...nt.Common/Interfaces/IElevationChecker.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...braries.Agent/Interfaces/IPowerControl.cs → ....Agent.Common/Interfaces/IPowerControl.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ies.Agent/Interfaces/IStreamerLauncher.cs → ...nt.Common/Interfaces/IStreamerLauncher.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ries.Agent/Interfaces/IStreamerUpdater.cs → ...ent.Common/Interfaces/IStreamerUpdater.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
namespace ControlR.Agent.Common.Interfaces; | ||
internal interface ITerminalSession | ||
{ | ||
} |
2 changes: 1 addition & 1 deletion
2
...raries.Agent/IpcDtos/DesktopRequestDto.cs → ...Agent.Common/IpcDtos/DesktopRequestDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
using MessagePack; | ||
namespace ControlR.Libraries.Agent.IpcDtos; | ||
namespace ControlR.Agent.Common.IpcDtos; | ||
|
||
[MessagePackObject] | ||
public record DesktopRequestDto(); |
2 changes: 1 addition & 1 deletion
2
...aries.Agent/IpcDtos/DesktopResponseDto.cs → ...gent.Common/IpcDtos/DesktopResponseDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
using ControlR.Libraries.Shared.Serialization; | ||
using MessagePack; | ||
|
||
namespace ControlR.Libraries.Agent.IpcDtos; | ||
namespace ControlR.Agent.Common.IpcDtos; | ||
|
||
[MessagePackObject] | ||
public record DesktopResponseDto([property: MsgPackKey] string DesktopName); |
2 changes: 1 addition & 1 deletion
2
...aries.Agent/IpcDtos/ShutdownRequestDto.cs → ...gent.Common/IpcDtos/ShutdownRequestDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
using MessagePack; | ||
|
||
namespace ControlR.Libraries.Agent.IpcDtos; | ||
namespace ControlR.Agent.Common.IpcDtos; | ||
|
||
[MessagePackObject] | ||
public record ShutdownRequestDto(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...olR.Libraries.Agent/Models/StartupMode.cs → ControlR.Agent.Common/Models/StartupMode.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ibraries.Agent/Models/StreamingSession.cs → ...R.Agent.Common/Models/StreamingSession.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ibraries.Agent/Options/InstanceOptions.cs → ...R.Agent.Common/Options/InstanceOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ies.Agent/Services/AgentHeartbeatTimer.cs → ...nt.Common/Services/AgentHeartbeatTimer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ibraries.Agent/Services/AgentHubClient.cs → ...R.Agent.Common/Services/AgentHubClient.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ries.Agent/Services/AgentHubConnection.cs → ...ent.Common/Services/AgentHubConnection.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...lR.Libraries.Agent/Services/DtoHandler.cs → ControlR.Agent.Common/Services/DtoHandler.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...nt/Services/Fakes/StreamerLauncherFake.cs → ...on/Services/Fakes/StreamerLauncherFake.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ent/Services/Fakes/StreamerUpdaterFake.cs → ...mon/Services/Fakes/StreamerUpdaterFake.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...gent/Services/HubConnectionInitializer.cs → ...mmon/Services/HubConnectionInitializer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...ent/Services/Linux/AgentInstallerLinux.cs → ...mon/Services/Linux/AgentInstallerLinux.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...ervices/Linux/DeviceDataGeneratorLinux.cs → ...ervices/Linux/DeviceDataGeneratorLinux.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...t/Services/Linux/ElevationCheckerLinux.cs → ...n/Services/Linux/ElevationCheckerLinux.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...Agent/Services/Linux/PowerControlLinux.cs → ...ommon/Services/Linux/PowerControlLinux.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.