fix: fixed stdin for processes

started work on upload file command
This commit is contained in:
Andrew Rioux
2023-09-06 00:07:15 -04:00
parent 9bb31ee6fa
commit 17e6056a03
11 changed files with 236 additions and 84 deletions

View File

@@ -24,10 +24,10 @@ pub mod messages {
SendTTYSignal(u64, u64),
StartUploadFile(PathBuf, u64),
SendFileSegment(u64, u64, Vec<u64>),
SendFileSegment(u64, u64, Vec<u8>),
StartDownloadFile(PathBuf),
DownloadFileStatus(Result<(), Vec<u64>>),
DownloadFileStatus(u64, Result<(), Vec<u64>>),
Disconnect,
}