Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Subsession owp #96

Open
wants to merge 18 commits into
base: 5.1.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
3302e44
Add -n option which produce .owp file for every subsession
ottojwittner Sep 14, 2023
2e40585
Removed OJW in comments
ottojwittner Sep 14, 2023
5618cbc
filters for emacs and checkinstall files
ottojwittner Oct 9, 2023
504a65d
Powstream with -n option operative, but only when -t is set...
ottojwittner Oct 9, 2023
d9c6765
Merge branch 'master' of github.com:perfsonar/owamp into subsession-owp
ottojwittner Oct 9, 2023
a885a60
owp data for subsession working in both directions. Last owp-file for…
ottojwittner Oct 13, 2023
c51becf
subsession owp dump code moved to write_subsession_owp. Income test d…
ottojwittner Oct 13, 2023
b88269b
Final fix to ensure consistent '-n'-behavior with and without '-t'
ottojwittner Oct 16, 2023
da62917
Removed OJW in comments
ottojwittner Sep 14, 2023
0aabb50
filters for emacs and checkinstall files
ottojwittner Oct 9, 2023
a0eb3d5
Moving branch subsession-owp to 5.1
ottojwittner Oct 26, 2023
96c191b
Releasing owamp - RPM 5.0.5-1 - DEB 5.0.5-1
arlake228 Sep 27, 2023
9cde512
owp data for subsession working in both directions. Last owp-file for…
ottojwittner Oct 13, 2023
a66c724
subsession owp dump code moved to write_subsession_owp. Income test d…
ottojwittner Oct 13, 2023
4c8596d
Final fix to ensure consistent '-n'-behavior with and without '-t'
ottojwittner Oct 16, 2023
c569cc3
Conflict-fix when rebasing branch to 5.1
ottojwittner Oct 27, 2023
6c1249e
Minor fixs to make 'legacy' compilers happy.
ottojwittner Oct 27, 2023
5a8d0f9
Sync with master?
ottojwittner Jan 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions owamp/owamp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# checkinstall stuff
backup-*.tgz
owamp_*.deb
description-pak
doc-pak*
checkinstall-make-deb.sh
# emacs backup files
*~
2 changes: 1 addition & 1 deletion owamp/owamp/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ AC_CONFIG_SRCDIR(owamp/context.c)
AM_CONFIG_HEADER(owamp/config.h)

AC_DEFINE(PATCH_LEVEL, 1, "The RPM version number")
AC_SUBST(PATCH_LEVEL, 0.a1.0)
AC_SUBST(PATCH_LEVEL, 1)

TOP_BUILD_DIRS=""

Expand Down
15 changes: 14 additions & 1 deletion owamp/owamp/doc/powstream.man
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ is created after the Stop-Sessions message has been received from
the sender host over the control socket. This message includes information about
any packet records that the sender did not send; therefore, the preliminary
data could show packet loss when, in reality, the sending process never sent
the expected packets.
the expected packets. The \fI\-n\fR option may be applied to make powstream
also output data files for each sub-session defined by \fI\-N\fR. If set \fI\-n\fR
may cause results not to take into account unsent packets.
.PP
.B powstream
saves data files and summary files for each session in the current directory,
Expand Down Expand Up @@ -403,6 +405,17 @@ option.
unset
.RE
.TP
\fB\-n\fR
.br
Enable output of sub-session data files (in addition to summary files).
This option requires \fI\-N\fR to be set. Note that this option will
disable output of the additional full data set summary file and full data
file which normally is output when only \fI\-N\fR is set.
.RS
.IP Default:
Unset.
.RE
.TP
\fB\-p\fR
.br
Print the names of data files and summary statistic files to STDOUT
Expand Down
6 changes: 6 additions & 0 deletions owamp/owamp/owamp/config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
/* "name of sysconfdir under prefix" */
#undef AUTOCONF_SYSCONFDIR

/* Define to 1 if you have the `adjtimex' function. */
#undef HAVE_ADJTIMEX

/* Define to 1 if you have the `bind' function. */
#undef HAVE_BIND

Expand Down Expand Up @@ -60,6 +63,9 @@
/* Define to 1 if you have the <netdb.h> header file. */
#undef HAVE_NETDB_H

/* Define to 1 if you have the `ntp_adjtime' function. */
#undef HAVE_NTP_ADJTIME

/* Define to 1 if you have the `socket' function. */
#undef HAVE_SOCKET

Expand Down
Loading