Commit 3159035c authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Remove -X flag.

parent 3d85c611
...@@ -143,28 +143,6 @@ main(int argc, char **argv) ...@@ -143,28 +143,6 @@ main(int argc, char **argv)
} else if(strcmp(*arg, "-p") == 0) { } else if(strcmp(*arg, "-p") == 0) {
SHIFTE(); SHIFTE();
protocol_port = atoi(*arg); protocol_port = atoi(*arg);
} else if(strcmp(*arg, "-X") == 0) {
int metric;
unsigned char prefix[16];
unsigned char plen;
SHIFTE();
rc = parse_net(*arg, prefix, &plen, NULL);
if(rc < 0)
goto syntax;
SHIFTE();
if(strcmp(*arg, "infinity") == 0)
metric = INFINITY;
else {
metric = atoi(*arg);
if(metric < 0 || metric > INFINITY)
goto syntax;
}
rc = add_xroute(XROUTE_FORCED, prefix, plen, metric, 0, 0);
if(rc < 0) {
fprintf(stderr, "Couldn't add xroute.\n");
exit(1);
}
} else if(strcmp(*arg, "-h") == 0) { } else if(strcmp(*arg, "-h") == 0) {
SHIFTE(); SHIFTE();
wireless_hello_interval = parse_msec(*arg); wireless_hello_interval = parse_msec(*arg);
...@@ -840,7 +818,7 @@ main(int argc, char **argv) ...@@ -840,7 +818,7 @@ main(int argc, char **argv)
" " " "
"[-k metric] [-s] [-p] [-l] [-w] [-d level] [-g port]\n" "[-k metric] [-s] [-p] [-l] [-w] [-d level] [-g port]\n"
" " " "
"[-t table] [-T table] [-X net cost] [-c file] [-C statement]\n" "[-t table] [-T table] [-c file] [-C statement]\n"
" " " "
"[-D] [-L logfile] [-I pidfile]\n" "[-D] [-L logfile] [-I pidfile]\n"
" " " "
......
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