Commit 39e23c4f authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Make broadcast_txcost default to false.

parent 51101a7c
......@@ -161,7 +161,7 @@ main(int argc, char **argv)
} else if(strcmp(*arg, "-s") == 0) {
split_horizon = 0;
} else if(strcmp(*arg, "-b") == 0) {
broadcast_txcost = 0;
broadcast_txcost = 1;
} else if(strcmp(*arg, "-S") == 0) {
SHIFTE();
state_file = *arg;
......
......@@ -45,7 +45,7 @@ unsigned int jitter;
unsigned int update_jitter;
int parasitic = 0;
int silent_time = 30;
int broadcast_txcost = 1;
int broadcast_txcost = 0;
int split_horizon = 1;
unsigned char seqno = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment