-
Notifications
You must be signed in to change notification settings - Fork 10
Commands
Dorian Stoll edited this page Jan 7, 2020
·
6 revisions
Commands are events that get sent from the host to the ME, requesting an action or a response from it. They will consist of the 4 byte command code, and 320 bytes of payload.
struct ipts_command {
u32 code;
u8 data[320];
};
If the full 320 bytes are not used for the payload, they should be filled with zeroes instead.