mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
22 lines
1.2 KiB
C#
22 lines
1.2 KiB
C#
namespace Aaru.Devices.Remote
|
|
{
|
|
public enum AaruPacketType : sbyte
|
|
{
|
|
Nop = -1, Hello = 1, CommandListDevices = 2,
|
|
ResponseListDevices = 3, CommandOpen = 4, CommandScsi = 5,
|
|
ResponseScsi = 6, CommandAtaChs = 7, ResponseAtaChs = 8,
|
|
CommandAtaLba28 = 9, ResponseAtaLba28 = 10, CommandAtaLba48 = 11,
|
|
ResponseAtaLba48 = 12, CommandSdhci = 13, ResponseSdhci = 14,
|
|
CommandGetType = 15, ResponseGetType = 16, CommandGetSdhciRegisters = 17,
|
|
ResponseGetSdhciRegisters = 18, CommandGetUsbData = 19, ResponseGetUsbData = 20,
|
|
CommandGetFireWireData = 21, ResponseGetFireWireData = 22, CommandGetPcmciaData = 23,
|
|
ResponseGetPcmciaData = 24, CommandCloseDevice = 25, CommandAmIRoot = 26,
|
|
ResponseAmIRoot = 27
|
|
}
|
|
|
|
public enum AaruNopReason : byte
|
|
{
|
|
OutOfOrder = 0, NotImplemented = 1, NotRecognized = 2,
|
|
ErrorListDevices = 3, OpenOk = 4, OpenError = 5
|
|
}
|
|
} |