[PR #240] [CLOSED] Dicremote #1083

Open
opened 2026-01-29 15:40:50 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/aaru-dps/Aaru/pull/240
Author: @claunia
Created: 10/19/2019
Status: Closed

Base: masterHead: dicremote


📝 Commits (10+)

  • 829bd17 Added base for remote connection and hello packet.
  • 3f1f42d Receive hello packet.
  • 6b40163 Send hello packet.
  • 21df48e Add packets for list devices.
  • cdd59d3 Move remote connection to Devices.
  • c2a0c5d Allow listing devices from remote.
  • 87d7368 Send list devices packet to remote.
  • 2fef7be Send correct architecture on remote connection.
  • b7781b3 Fix comparison.
  • 2d6bd3f Add padding to device info list member.

📊 Changes

20 files changed (+3630 additions, -858 deletions)

View changed files

📝 .idea/.idea.DiscImageChef/.idea/contentModel.xml (+7 -0)
📝 DiscImageChef.CommonTypes/Enums/DeviceType.cs (+7 -7)
📝 DiscImageChef.Decoders/ATA/Registers.cs (+13 -5)
📝 DiscImageChef.Devices/Command.cs (+128 -128)
📝 DiscImageChef.Devices/Device/Commands.cs (+92 -51)
📝 DiscImageChef.Devices/Device/Constructor.cs (+577 -462)
📝 DiscImageChef.Devices/Device/List.cs (+39 -8)
📝 DiscImageChef.Devices/Device/Variables.cs (+11 -9)
📝 DiscImageChef.Devices/DiscImageChef.Devices.csproj (+4 -0)
📝 DiscImageChef.Devices/Enums.cs (+909 -56)
DiscImageChef.Devices/Remote/Consts.cs (+9 -0)
DiscImageChef.Devices/Remote/Enums.cs (+41 -0)
DiscImageChef.Devices/Remote/Remote.cs (+1188 -0)
DiscImageChef.Devices/Remote/Structs.cs (+308 -0)
📝 DiscImageChef.Helpers/Marshal.cs (+105 -81)
📝 DiscImageChef.sln.DotSettings (+1 -0)
📝 DiscImageChef/Commands/ListDevices.cs (+44 -22)
DiscImageChef/Commands/Remote.cs (+116 -0)
📝 DiscImageChef/DiscImageChef.csproj (+1 -0)
📝 DiscImageChef/Main.cs (+30 -29)

📄 Description

Add support for remote.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/aaru-dps/Aaru/pull/240 **Author:** [@claunia](https://github.com/claunia) **Created:** 10/19/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dicremote` --- ### 📝 Commits (10+) - [`829bd17`](https://github.com/aaru-dps/Aaru/commit/829bd175b2a5b9f271b81de4971f4af16aae8728) Added base for remote connection and hello packet. - [`3f1f42d`](https://github.com/aaru-dps/Aaru/commit/3f1f42d197fa6a00f6eaef442a91ed8aca02809c) Receive hello packet. - [`6b40163`](https://github.com/aaru-dps/Aaru/commit/6b4016337f969dc925dafd3f681c04222e74f6f6) Send hello packet. - [`21df48e`](https://github.com/aaru-dps/Aaru/commit/21df48e8c1ab60a0c297996653d810ea76557e04) Add packets for list devices. - [`cdd59d3`](https://github.com/aaru-dps/Aaru/commit/cdd59d390b7b5adb2de294a8a3e7c2555b230422) Move remote connection to Devices. - [`c2a0c5d`](https://github.com/aaru-dps/Aaru/commit/c2a0c5dde2a7b26027c9878624a39a62067ec008) Allow listing devices from remote. - [`87d7368`](https://github.com/aaru-dps/Aaru/commit/87d7368515f4237596d56c8fc8912a565717e00d) Send list devices packet to remote. - [`2fef7be`](https://github.com/aaru-dps/Aaru/commit/2fef7be361fc6eefaba0ee0a4ae5f593f43326f5) Send correct architecture on remote connection. - [`b7781b3`](https://github.com/aaru-dps/Aaru/commit/b7781b309a3d62a0d33cf0273417a340157cb619) Fix comparison. - [`2d6bd3f`](https://github.com/aaru-dps/Aaru/commit/2d6bd3f1c06f5ee9e68d385b1e889eb59354bfcc) Add padding to device info list member. ### 📊 Changes **20 files changed** (+3630 additions, -858 deletions) <details> <summary>View changed files</summary> 📝 `.idea/.idea.DiscImageChef/.idea/contentModel.xml` (+7 -0) 📝 `DiscImageChef.CommonTypes/Enums/DeviceType.cs` (+7 -7) 📝 `DiscImageChef.Decoders/ATA/Registers.cs` (+13 -5) 📝 `DiscImageChef.Devices/Command.cs` (+128 -128) 📝 `DiscImageChef.Devices/Device/Commands.cs` (+92 -51) 📝 `DiscImageChef.Devices/Device/Constructor.cs` (+577 -462) 📝 `DiscImageChef.Devices/Device/List.cs` (+39 -8) 📝 `DiscImageChef.Devices/Device/Variables.cs` (+11 -9) 📝 `DiscImageChef.Devices/DiscImageChef.Devices.csproj` (+4 -0) 📝 `DiscImageChef.Devices/Enums.cs` (+909 -56) ➕ `DiscImageChef.Devices/Remote/Consts.cs` (+9 -0) ➕ `DiscImageChef.Devices/Remote/Enums.cs` (+41 -0) ➕ `DiscImageChef.Devices/Remote/Remote.cs` (+1188 -0) ➕ `DiscImageChef.Devices/Remote/Structs.cs` (+308 -0) 📝 `DiscImageChef.Helpers/Marshal.cs` (+105 -81) 📝 `DiscImageChef.sln.DotSettings` (+1 -0) 📝 `DiscImageChef/Commands/ListDevices.cs` (+44 -22) ➕ `DiscImageChef/Commands/Remote.cs` (+116 -0) 📝 `DiscImageChef/DiscImageChef.csproj` (+1 -0) 📝 `DiscImageChef/Main.cs` (+30 -29) </details> ### 📄 Description Add support for remote. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:40:51 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: aaru-dps/Aaru-aaru-dps#1083