summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-20 18:20:33 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-20 18:20:33 +0000
commit6fd172f872ae9ae70e06362d6aae4780fe63321a (patch)
tree59a9241115bac7801ecd794643c956fa628b776d
parent87585cbdd27e50a7e76454d38f18f2ad6f981165 (diff)
downloadATCD-6fd172f872ae9ae70e06362d6aae4780fe63321a.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98a4
-rw-r--r--performance-tests/UDP/README17
2 files changed, 21 insertions, 0 deletions
diff --git a/ChangeLog-98a b/ChangeLog-98a
index ab8a79baeba..26b82a5a209 100644
--- a/ChangeLog-98a
+++ b/ChangeLog-98a
@@ -4,6 +4,10 @@ Fri Mar 20 09:31:22 1998 David L. Levine <levine@cs.wustl.edu>
from long to ACE_UINT32 to ensure that it is 4 bytes on
any platform.
+ * performance-tests/UDP/udp_test.cpp: added this test, which
+ provides UDP performance statistics. Thanks to Fred Kuhns
+ <fredk@arl.wustl.edu> for contributing the test.
+
Thu Mar 19 10:15:27 1998 Steve Huston <shuston@riverace.com>
* ace/OS.i: Changed the dynamic library load/unload code so that
diff --git a/performance-tests/UDP/README b/performance-tests/UDP/README
new file mode 100644
index 00000000000..f2eb3308e1e
--- /dev/null
+++ b/performance-tests/UDP/README
@@ -0,0 +1,17 @@
+// $Id$
+
+udp_test sends UDP packets and records round-trip latency. The client
+records the latencies and provides nice summary statistics. The server
+simply echos packets back to the client.
+
+To run:
+ 1) On server host:
+ % ./udp_test -r
+
+ 2) On client host:
+ % ./udp_test -t -n 1000 <server host>
+
+The -n option specifies the number of samples (packets to send).
+Other command line options are available: ./udp_test -? to
+list them.
+