Skip to content

Commit

Permalink
New release 1.0.8 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
realneel committed Mar 19, 2023
1 parent 0536b0b commit 41ee8ad
Show file tree
Hide file tree
Showing 7 changed files with 101 additions and 102 deletions.
5 changes: 2 additions & 3 deletions configure.ac
@@ -1,6 +1,6 @@
# uperf configure file
# neel@sun.com
AC_INIT([uperf],[1.0.7],[realneel@gmail.com])
AC_INIT([uperf],[1.0.8],[realneel@gmail.com])
AC_CONFIG_SRCDIR([src/flowops.c])
AC_CONFIG_HEADERS([config.h])

Expand Down Expand Up @@ -153,7 +153,7 @@ main(int argc, char *argv[])
AC_MSG_RESULT(no)
AC_DEFINE([STRAND_THREAD_ONLY], [1], [Use only threads])
AM_CONDITIONAL([HAVE_PROCESSES], [false])
],[])
# Checks for libraries.
AC_MSG_CHECKING(whether to enable cpu performance counters support?)
Expand Down Expand Up @@ -395,4 +395,3 @@ echo "+------------------------------------------------+"
printf "|%33s:%14s|\n" "Network stats collection enabled?" "$enable_netstat"
printf "|%33s:%14s|\n" "CPU Performance counters?" "$cpc"
echo "+------------------------------------------------+"

10 changes: 5 additions & 5 deletions docs/index.html
Expand Up @@ -21,15 +21,15 @@
<p>
uperf is a network performance tool that supports modelling and
replay of various networking patterns. uperf was initially developed by the
Performance Applications Engineering group at
<a href="http://www.sun.com">Sun Microsystems</a>. Since 2008, it is
Performance Applications Engineering group at
<a href="http://www.sun.com">Sun Microsystems</a>. Since 2008, it is
being developed by the community. uperf is released under the <a
href="http://www.gnu.org/licenses/gpl.html">
GNU General Public License Version 3</a>.
</p>

<P>
The latest version of uperf is 1.0.7 was released April 2020.
The latest version of uperf is 1.0.8 (March 2023)
</P>

<h3>Download</h3>
Expand All @@ -40,7 +40,7 @@ <h3>Download</h3>
You can download Ubuntu binaries from Volodymyr Kononenko's PPA at <a href="https://launchpad.net/~vmkononenko/+archive/ubuntu/uperf">https://launchpad.net/~vmkononenko/+archive/ubuntu/uperf</a>
</p>
<P>
On FreeBSD, Uperf is available as a binary package (pkg install uperf) and a port (cd /usr/ports/benchmarks/uperf && make install clean).
On FreeBSD, Uperf is available as a binary package (pkg install uperf) and a port (cd /usr/ports/benchmarks/uperf && make install clean).
<A href="https://www.freshports.org/benchmarks/uperf">Details</a>
</p>

Expand All @@ -52,7 +52,7 @@ <h3>Download</h3>
<ul>
<li>Added -x option to generate output that can be processed by
<a href="http://fenxi.dev.java.net">Fenxi</a></li>
<li>Added an option to generate traffic to specific ports. (use
<li>Added an option to generate traffic to specific ports. (use
port=xxx in the options part of the connect or accept flowop)
</li>
<li>UDP traffic can now be rate limited! (use rate=xxx in the options
Expand Down
82 changes: 41 additions & 41 deletions docs/manual.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion manual/uperf-help.txt
@@ -1,4 +1,4 @@
Uperf Version 1.0.7
Uperf Version 1.0.8
Usage: uperf [-m profile] [-hvV] [-ngtTfkpaeE:X:i:P:RS:]
uperf [-s] [-hvV]

Expand Down
92 changes: 46 additions & 46 deletions manual/uperf.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion release
@@ -1 +1 @@
uperf-1.0.7 build 041620
uperf-1.0.8 build 031723
10 changes: 5 additions & 5 deletions src/uperf.h
Expand Up @@ -20,7 +20,7 @@

/* Keep the data version as 0.2.5 to avoid the version mismatch problem. */
#define UPERF_DATA_VERSION "0.3.1"
#define UPERF_VERSION "1.0.7"
#define UPERF_VERSION "1.0.8"
#define UPERF_VERSION_LEN 16
#define UPERF_EMAIL_ALIAS "uperf-discuss@lists.sourceforge.net"

Expand Down Expand Up @@ -69,8 +69,8 @@ typedef enum {
#define STRAND_IS_MASTER(s) ((s)->strand_flag & STRAND_ROLE_MASTER)
#define STRAND_IS_SLAVE(s) ((s)->strand_flag & STRAND_ROLE_SLAVE)

#define UPERF_OK "OK"
#define UPERF_NOT_OK "Not OK"
#define UPERF_OK "OK"
#define UPERF_NOT_OK "Not OK"
#define UPERF_MAGIC "0xbadcafedeadbeef"

#define STAT_FLOWOP 1
Expand All @@ -85,8 +85,8 @@ typedef enum {
#define MAX_REMOTE_HOSTS MAXTHREADGROUPS
#define DEFAULT_BUFFER_SIZE 8192

#define IS_PROCESS(a) (a->worklist->thread_type == TYPE_PROCESS)
#define IS_THREAD(a) (a->worklist->thread_type != TYPE_PROCESS)
#define IS_PROCESS(a) (a->worklist->thread_type == TYPE_PROCESS)
#define IS_THREAD(a) (a->worklist->thread_type != TYPE_PROCESS)

#ifndef HAVE_BSWAP
/* solaris 9 does not have this */
Expand Down

0 comments on commit 41ee8ad

Please sign in to comment.