You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.6 KiB
74 lines
2.6 KiB
diff --git a/man/de_DE/netstat.8 b/man/de_DE/netstat.8 |
|
index d6b77ff..fdb76c9 100644 |
|
--- a/man/de_DE/netstat.8 |
|
+++ b/man/de_DE/netstat.8 |
|
@@ -20,6 +20,8 @@ netstat \- Anzeige von Netzwerksverbindungen, Routentabellen, Schnittstellenstat |
|
.RB [ \-venaoc ] |
|
.RB [ \-\-tcp | \-t ] |
|
.RB [ \-\-udp | \-u ] |
|
+.RB [ \-\-udplite | \-U ] |
|
+.RB [ \-\-sctp | \-S ] |
|
.RB [ \-\-raw | \-w ] |
|
.RB [ \-\-groups | \-g ] |
|
.RB [ \-\-unix | \-x ] |
|
diff --git a/man/en_US/netstat.8 b/man/en_US/netstat.8 |
|
index 831faf2..7fcd41b 100644 |
|
--- a/man/en_US/netstat.8 |
|
+++ b/man/en_US/netstat.8 |
|
@@ -21,6 +21,7 @@ netstat \- Print network connections, routing tables, interface statistics, masq |
|
.RB [ \-\-tcp | \-t ] |
|
.RB [ \-\-udp | \-u ] |
|
.RB [ \-\-udplite | \-U ] |
|
+.RB [ \-\-sctp | \-S ] |
|
.RB [ \-\-raw | \-w ] |
|
.RB [ \-\-listening | \-l ] |
|
.RB [ \-\-all | \-a ] |
|
@@ -76,6 +77,7 @@ netstat \- Print network connections, routing tables, interface statistics, masq |
|
.RB [ \-\-tcp | \-t ] |
|
.RB [ \-\-udp | \-u ] |
|
.RB [ \-\-udplite | \-U ] |
|
+.RB [ \-\-sctp | \-S ] |
|
.RB [ \-\-raw | \-w ] |
|
.RB [delay] |
|
.P |
|
diff --git a/man/fr_FR/netstat.8 b/man/fr_FR/netstat.8 |
|
index fedbe4f..c65d0be 100644 |
|
--- a/man/fr_FR/netstat.8 |
|
+++ b/man/fr_FR/netstat.8 |
|
@@ -21,6 +21,8 @@ et les membres multicast. |
|
.RB [ \-venaoc ] |
|
.RB [ \-\-tcp | \-t ] |
|
.RB [ \-\-udp | \-u ] |
|
+.RB [ \-\-udplite | \-U ] |
|
+.RB [ \-\-sctp | \-S ] |
|
.RB [ \-\-raw | \-w ] |
|
.RB [ \-\-groups | \-g ] |
|
.RB [ \-\-unix | \-x ] |
|
diff --git a/man/pt_BR/netstat.8 b/man/pt_BR/netstat.8 |
|
index 1903bbb..d2d04ef 100644 |
|
--- a/man/pt_BR/netstat.8 |
|
+++ b/man/pt_BR/netstat.8 |
|
@@ -19,6 +19,8 @@ mascaradas. |
|
.RB [ \-venaoc ] |
|
.RB [ \-\-tcp | \-t ] |
|
.RB [ \-\-udp | \-u ] |
|
+.RB [ \-\-udplite | \-U ] |
|
+.RB [ \-\-sctp | \-S ] |
|
.RB [ \-\-raw | \-w ] |
|
.RB [ \-\-unix | \-x ] |
|
.RB [ \-\-inet | \-\-ip ] |
|
diff --git a/netstat.c b/netstat.c |
|
index 43bd62f..ca93260 100644 |
|
--- a/netstat.c |
|
+++ b/netstat.c |
|
@@ -2094,8 +2095,8 @@ static void usage(void) |
|
fprintf(stderr, _(" -Z, --context display SELinux security context for sockets\n")); |
|
#endif |
|
|
|
- fprintf(stderr, _("\n <Socket>={-t|--tcp} {-u|--udp} {-U|--udplite} {-w|--raw} {-x|--unix}\n")); |
|
- fprintf(stderr, _(" --ax25 --ipx --netrom\n")); |
|
+ fprintf(stderr, _("\n <Socket>={-t|--tcp} {-u|--udp} {-U|--udplite} {-S|--sctp} {-w|--raw}\n")); |
|
+ fprintf(stderr, _(" {-x|--unix} --ax25 --ipx --netrom\n")); |
|
fprintf(stderr, _(" <AF>=Use '-6|-4' or '-A <af>' or '--<af>'; default: %s\n"), DFLT_AF); |
|
fprintf(stderr, _(" List of possible address families (which support routing):\n")); |
|
print_aflist(1); /* 1 = routeable */
|
|
|