aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.rs
blob: 5830ab6762cc8745879f6902c932c55ffac79491 (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, UtpListener};


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

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