aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/applets.h1
-rw-r--r--include/usage.h17
2 files changed, 15 insertions, 3 deletions
diff --git a/include/applets.h b/include/applets.h
index 1d6cc932e..80ee222d8 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -164,6 +164,7 @@ USE_IPCRM(APPLET(ipcrm, _BB_DIR_USR_BIN, _BB_SUID_ALWAYS))
164USE_IPCS(APPLET(ipcs, _BB_DIR_USR_BIN, _BB_SUID_ALWAYS)) 164USE_IPCS(APPLET(ipcs, _BB_DIR_USR_BIN, _BB_SUID_ALWAYS))
165USE_IPLINK(APPLET(iplink, _BB_DIR_BIN, _BB_SUID_NEVER)) 165USE_IPLINK(APPLET(iplink, _BB_DIR_BIN, _BB_SUID_NEVER))
166USE_IPROUTE(APPLET(iproute, _BB_DIR_BIN, _BB_SUID_NEVER)) 166USE_IPROUTE(APPLET(iproute, _BB_DIR_BIN, _BB_SUID_NEVER))
167USE_IPRULE(APPLET(iprule, _BB_DIR_BIN, _BB_SUID_NEVER))
167USE_IPTUNNEL(APPLET(iptunnel, _BB_DIR_BIN, _BB_SUID_NEVER)) 168USE_IPTUNNEL(APPLET(iptunnel, _BB_DIR_BIN, _BB_SUID_NEVER))
168USE_KILL(APPLET(kill, _BB_DIR_BIN, _BB_SUID_NEVER)) 169USE_KILL(APPLET(kill, _BB_DIR_BIN, _BB_SUID_NEVER))
169USE_KILLALL(APPLET_ODDNAME(killall, kill, _BB_DIR_USR_BIN, _BB_SUID_NEVER, killall)) 170USE_KILLALL(APPLET_ODDNAME(killall, kill, _BB_DIR_USR_BIN, _BB_SUID_NEVER, killall))
diff --git a/include/usage.h b/include/usage.h
index 7898473a6..2a6e335ba 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -1453,10 +1453,10 @@ USE_FEATURE_DATE_ISOFMT( \
1453 "\t-s\tstrip symbol tables" 1453 "\t-s\tstrip symbol tables"
1454 1454
1455#define ip_trivial_usage \ 1455#define ip_trivial_usage \
1456 "[ OPTIONS ] { address | link | route | tunnel } { COMMAND | help }" 1456 "[OPTIONS] {address | link | route | tunnel | rule} {COMMAND}"
1457#define ip_full_usage \ 1457#define ip_full_usage \
1458 "ip [ OPTIONS ] OBJECT { COMMAND | help }\n" \ 1458 "ip [OPTIONS] OBJECT {COMMAND}\n" \
1459 "where OBJECT := { link | addr | route | tunnel }\n" \ 1459 "where OBJECT := {link | addr | route | tunnel |rule}\n" \
1460 "OPTIONS := { -f[amily] { inet | inet6 | link } | -o[neline] }" 1460 "OPTIONS := { -f[amily] { inet | inet6 | link } | -o[neline] }"
1461 1461
1462#define ipaddr_trivial_usage \ 1462#define ipaddr_trivial_usage \
@@ -1529,6 +1529,17 @@ USE_FEATURE_DATE_ISOFMT( \
1529 "\t\t\tSELECTOR := [ root PREFIX ] [ match PREFIX ] [ proto RTPROTO ]\n" \ 1529 "\t\t\tSELECTOR := [ root PREFIX ] [ match PREFIX ] [ proto RTPROTO ]\n" \
1530 "\t\t\tROUTE := [ TYPE ] PREFIX [ tos TOS ] [ proto RTPROTO ]" 1530 "\t\t\tROUTE := [ TYPE ] PREFIX [ tos TOS ] [ proto RTPROTO ]"
1531 1531
1532#define iprule_trivial_usage \
1533 "{[ list | add | del ] RULE}"
1534#define iprule_full_usage \
1535 "iprule [ list | add | del ] SELECTOR ACTION\n" \
1536 "\tSELECTOR := [ from PREFIX ] [ to PREFIX ] [ tos TOS ] [ fwmark FWMARK ]\n" \
1537 "\t\t\t[ dev STRING ] [ pref NUMBER ]\n" \
1538 "\tACTION := [ table TABLE_ID ] [ nat ADDRESS ]\n" \
1539 "\t\t\t[ prohibit | reject | unreachable ]\n" \
1540 "\t\t\t[ realms [SRCREALM/]DSTREALM ]\n" \
1541 "\tTABLE_ID := [ local | main | default | NUMBER ]"
1542
1532#define iptunnel_trivial_usage \ 1543#define iptunnel_trivial_usage \
1533 "{ add | change | del | show } [ NAME ]\n" \ 1544 "{ add | change | del | show } [ NAME ]\n" \
1534 "\t\t[ mode { ipip | gre | sit } ]\n" \ 1545 "\t\t[ mode { ipip | gre | sit } ]\n" \