diff options
Diffstat (limited to 'src/common.rs')
-rw-r--r-- | src/common.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/common.rs b/src/common.rs new file mode 100644 index 0000000..5830ab6 --- /dev/null +++ b/src/common.rs @@ -0,0 +1,16 @@ + +extern crate utp; + +use std::str; +use std::env; +use std::process::exit; +use utp::{UtpSocket, UtpListener}; + + +fn send_files(socket: UtpSocket, file_path: &str, recursive: bool) { + unimplemented!(); +} + +fn receive_files(socket: UtpSocket, file_path: &str) { + unimplemented!(); +} |