Merge pull request #185 from sakridge/fix_default_client_port

Fix default client port, server uses 8000-8002 for gossip
This commit is contained in:
Greg Fitzgerald 2018-05-08 16:58:04 -06:00 committed by GitHub
commit 61425eacb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ fn print_usage(program: &str, opts: Options) {
fn main() {
let mut threads = 4usize;
let mut addr: String = "127.0.0.1:8000".to_string();
let mut client_addr: String = "127.0.0.1:8001".to_string();
let mut client_addr: String = "127.0.0.1:8010".to_string();
let mut opts = Options::new();
opts.optopt("s", "", "server address", "host:port");