diff options
Diffstat (limited to 'src/msg.fbs')
-rw-r--r-- | src/msg.fbs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/msg.fbs b/src/msg.fbs index 43fde4d68..5b60213ad 100644 --- a/src/msg.fbs +++ b/src/msg.fbs @@ -41,6 +41,9 @@ union Any { Accept, Dial, NewConn, + Chdir, + Cwd, + CwdRes, Metrics, MetricsRes, } @@ -93,6 +96,12 @@ enum ErrorKind: byte { HttpOther, } +table Cwd {} + +table CwdRes { + cwd: string; +} + table Base { cmd_id: uint32; sync: bool = true; // TODO(ry) Change default to false. @@ -135,6 +144,10 @@ table CodeCache { output_code: string; } +table Chdir { + directory: string; +} + table SetTimeout { timeout: double; } |