Skip to Content.
Sympa Menu

ndt-dev - [ndt-dev] [ndt] r827 committed - Fix an additonal issue with byte counting for 10Gbps networks in the s...

Subject: NDT-DEV email list created

List archive

[ndt-dev] [ndt] r827 committed - Fix an additonal issue with byte counting for 10Gbps networks in the s...


Chronological Thread 
  • From:
  • To:
  • Subject: [ndt-dev] [ndt] r827 committed - Fix an additonal issue with byte counting for 10Gbps networks in the s...
  • Date: Mon, 17 Jun 2013 04:39:33 +0000
  • Authentication-results: sfpop-ironport07.merit.edu; dkim=neutral (message not signed) header.i=none

Revision: 827
Author:

Date: Sun Jun 16 21:39:20 2013
Log: Fix an additonal issue with byte counting for 10Gbps networks in the s2c tests in the Java Applet. Tested on loopback; appears to be working now.
Removed an extra space from a locale string lookup in Java Applet.
http://code.google.com/p/ndt/source/detail?r=827

Modified:
/trunk/Applet/Tcpbw100.java

=======================================
--- /trunk/Applet/Tcpbw100.java Tue May 21 07:47:24 2013
+++ /trunk/Applet/Tcpbw100.java Sun Jun 16 21:39:20 2013
@@ -1947,7 +1947,7 @@

// Get input stream to read bytes from socket
InputStream srvin = inSocket.getInputStream();
- int iBitCount = 0;
+ long iBitCount = 0;
int inlth;

// wait here for signal from server application
@@ -2955,7 +2955,7 @@
case NDTConstants.DUPLEX_OK_INDICATOR:
if (bad_cable == 1) {

_resultsTxtPane.append(_resBundDisplayMsgs
- .getString("excessiveErrors ")
+ "\n");
+ .getString("excessiveErrors") +
"\n");
_sEmailText += _resBundDisplayMsgs
.getString("excessiveErrors") +
"\n%0A";
}


  • [ndt-dev] [ndt] r827 committed - Fix an additonal issue with byte counting for 10Gbps networks in the s..., ndt, 06/17/2013

Archive powered by MHonArc 2.6.16.

Top of Page