[VictoriaFalls] Add a get directory ipc call for victoria falls.
This commit is contained in:
parent
7d7cb8024c
commit
d0a3bf3936
9 changed files with 263 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
|||
interface VFS {
|
||||
method OpenFile(OpenFileRequest) -> (OpenFileResponse);
|
||||
method GetDirectory(GetDirectoryRequest) -> (Directory);
|
||||
}
|
||||
|
||||
message OpenFileRequest {
|
||||
|
|
@ -11,3 +12,12 @@ message OpenFileResponse {
|
|||
u64 size;
|
||||
capability memory;
|
||||
}
|
||||
|
||||
message GetDirectoryRequest {
|
||||
string path;
|
||||
}
|
||||
|
||||
message Directory {
|
||||
// , separated list of filenames until we have repeated strings.
|
||||
string filenames;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue