summaryrefslogtreecommitdiff
path: root/pr/tests/thruput.c
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2000-02-23 23:38:19 +0000
committerwtc%netscape.com <devnull@localhost>2000-02-23 23:38:19 +0000
commitc946b6be47b3c83eef19f3347c17af256a08ef50 (patch)
treeb1bf74cbb393831f03ee3f3e47476fef23705772 /pr/tests/thruput.c
parent989531415e36431e9e81bd2487f1265489edcceb (diff)
downloadnspr-hg-c946b6be47b3c83eef19f3347c17af256a08ef50.tar.gz
Landed NSPRPUB_RELEASE_4_0_20000223 onto the main trunk.
Diffstat (limited to 'pr/tests/thruput.c')
-rw-r--r--pr/tests/thruput.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/pr/tests/thruput.c b/pr/tests/thruput.c
index f06c1694..bdc23c3f 100644
--- a/pr/tests/thruput.c
+++ b/pr/tests/thruput.c
@@ -294,9 +294,7 @@ static void Help(void)
PR_fprintf(err, "\t-B <nK> Transport recv/send buffer size (default: sys)\n");
PR_fprintf(err, "\t-G Use GLOBAL threads (default: LOCAL)\n");
PR_fprintf(err, "\t-X Use XTP transport (default: TCP)\n");
-#ifdef _PR_INET6
PR_fprintf(err, "\t-6 Use IPv6 (default: IPv4)\n");
-#endif /* _PR_INET6 */
PR_fprintf(err, "\t-h This message and nothing else\n");
PR_fprintf(err, "\t<server> DNS name of server\n");
PR_fprintf(err, "\t\tIf <server> is not specified, this host will be\n");
@@ -325,12 +323,9 @@ PRIntn main(PRIntn argc, char **argv)
case 'X': /* Use XTP as the transport */
protocol = 36;
break;
-#ifdef _PR_INET6
case '6': /* Use IPv6 */
domain = PR_AF_INET6;
- PR_SetIPv6Enable(PR_TRUE);
break;
-#endif /* _PR_INET6 */
case 's': /* initial_streams */
initial_streams = atoi(opt->value);
break;