Oops! Configuration compiles now.
This commit is contained in:
parent
a460184532
commit
49569a8b53
1 changed files with 4 additions and 4 deletions
|
@ -244,7 +244,7 @@ CF_CLI(SHOW INTERFACES,,, [[Show network interfaces]])
|
||||||
CF_CLI(SHOW INTERFACES SUMMARY,,, [[Show summary of network interfaces]])
|
CF_CLI(SHOW INTERFACES SUMMARY,,, [[Show summary of network interfaces]])
|
||||||
{ if_show_summary(); } ;
|
{ if_show_summary(); } ;
|
||||||
|
|
||||||
CF_CLI(SHOW ROUTE, r_args, [[for] <prefix>|<ip>] [table <t>] [filter <f>|where <cond>] [all] [primary] [(import|protocol) <p>] [stats|count], [[Show routing table]])
|
CF_CLI(SHOW ROUTE, r_args, [[[<prefix>|for <prefix>|for <ip>] [table <t>] [filter <f>|where <cond>] [all] [primary] [(import|protocol) <p>] [stats|count]]], [[Show routing table]])
|
||||||
{ rt_show($3); } ;
|
{ rt_show($3); } ;
|
||||||
|
|
||||||
r_args:
|
r_args:
|
||||||
|
@ -353,11 +353,11 @@ echo_size:
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
CF_CLI(DISABLE, proto_patt, <protocol> | "<pattern>" | all, [[Disable protocol]])
|
CF_CLI(DISABLE, proto_patt, <protocol> | \"<pattern>\" | all, [[Disable protocol]])
|
||||||
{ proto_xxable($2, 0); } ;
|
{ proto_xxable($2, 0); } ;
|
||||||
CF_CLI(ENABLE, proto_patt, <protocol> | "<pattern>" | all, [[Enable protocol]])
|
CF_CLI(ENABLE, proto_patt, <protocol> | \"<pattern>\" | all, [[Enable protocol]])
|
||||||
{ proto_xxable($2, 1); } ;
|
{ proto_xxable($2, 1); } ;
|
||||||
CF_CLI(RESTART, proto_patt, <protocol> | "<pattern>" | all, [[Restart protocol]])
|
CF_CLI(RESTART, proto_patt, <protocol> | \"<pattern>\" | all, [[Restart protocol]])
|
||||||
{ proto_xxable($2, 2); } ;
|
{ proto_xxable($2, 2); } ;
|
||||||
|
|
||||||
CF_CLI_HELP(DEBUG, ..., [[Control protocol debugging]])
|
CF_CLI_HELP(DEBUG, ..., [[Control protocol debugging]])
|
||||||
|
|
Loading…
Reference in a new issue