correct omissions
parent
760f9b9d95
commit
19f9442495
|
|
@ -13,7 +13,9 @@ Except where otherwise specified, each control message consists of the format:
|
||||||
|
|
||||||
Where <handle> is an arbitrary string (typically a UUID) generated by the OS for each interaction, <command> is one of:
|
Where <handle> is an arbitrary string (typically a UUID) generated by the OS for each interaction, <command> is one of:
|
||||||
|
|
||||||
connect disconnect access size read write ready delete deleted new update close
|
system-to-storage: connect disconnect stat read write append delete close
|
||||||
|
|
||||||
|
storage-to-system: version reset access stat ready deleted new update denied
|
||||||
|
|
||||||
and the <argument>s are <command>-specific.
|
and the <argument>s are <command>-specific.
|
||||||
|
|
||||||
|
|
@ -81,9 +83,11 @@ MESSAGES
|
||||||
|
|
||||||
storage -> system
|
storage -> system
|
||||||
|
|
||||||
|
Responds to a request to a "connect" command (above).
|
||||||
|
|
||||||
where <mode> is one of: ro rd rw
|
where <mode> is one of: ro rd rw
|
||||||
|
|
||||||
Responds to a request to a "connect" command (above). The storage device should indicate the level of access it is willing/capable of giving the system. It should also store the host UUID and granted level of permission for future reference. The useful modes are defined as "read only" (ro), "read and delete" (rd), or "full access" (rw). A mode of "none" indicates the connection was rejected and not stored.
|
The storage device should indicate the level of access it is willing/capable of giving the system. It should also store the host UUID and granted level of permission for future reference. The useful modes are defined as "read only" (ro), "read and delete" (rd), or "full access" (rw). A mode of "none" indicates the connection was rejected and not stored.
|
||||||
|
|
||||||
where <unit> is one of: b p l
|
where <unit> is one of: b p l
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue