Move defaults from bash to Rust

This commit is contained in:
Greg Fitzgerald
2018-05-31 18:04:39 -06:00
committed by Grimes
parent 93d5d1b2ad
commit 9b54c1542b
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ fn main() {
print_usage(&program, opts);
return;
}
let mut addr: SocketAddr = "0.0.0.0:8010".parse().unwrap();
let mut addr: SocketAddr = "0.0.0.0:8100".parse().unwrap();
if matches.opt_present("c") {
let port = matches.opt_str("c").unwrap().parse().unwrap();
addr.set_port(port);