aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.rs
blob: 063b166456ba10513c9c556f2d8dce02b889ab24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

extern crate utp;

use std::str;
use std::env;
use std::process::exit;
use utp::{UtpSocket};


fn send_files(socket: UtpSocket, file_path: &str, recursive: bool) {
    unimplemented!();
}

fn receive_files(socket: UtpSocket, file_path: &str) {
    unimplemented!();
}