dot_command_header
struct dot_command_header *header = (struct dot_command_header *)message;
struct dot_command_header *header;
header = (struct dot_command_header *)command->buffer;
vpd_command = command->buffer + sizeof(struct dot_command_header);
struct dot_command_header header;
struct dot_command_header *cmd = (struct dot_command_header *)buffer;
return sizeof(struct dot_command_header) + cmd->command_size + cmd->data_size;
struct dot_command_header *header = (struct dot_command_header *)buffer;
unsigned char *cmd = buffer + sizeof(struct dot_command_header);
struct dot_command_header *header = (struct dot_command_header *)cmd->buffer;
struct dot_command_header header;