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

Fix version inconsistencies #99

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion CHANGES.TXT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SI6 Networks IPv6 Toolkit (current)
SI6 Networks IPv6 Toolkit 2.2
* All: Ensure consistency in version numbers across tools and documentation.

* path6: Fix bug that prevented setting TCP flags
Expand Down
17 changes: 5 additions & 12 deletions CREDITS.TXT
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
CREDITS
-------

** Contributors **

The following people sent patches that were incorporated into this release
of the toolkit:

Jeroen Roovers
Alexander Bluhm <bluhm@openbsd.org>
Leonard Marschke <contact@marschke.me>
Linus Lüssing <linus.luessing@c0d3.blue>
Josh Brobst <josh@brob.st>

** Package maintainers **

Availability of packages for different operating systems makes it easier for
Expand Down Expand Up @@ -56,7 +45,11 @@ of the toolkit:
Alexander Bluhm <bluhm@openbsd.org>
Alistair Crooks <agc@pkgsrc.org>
Declan A Rieb <darieb@sandia.gov>

Jeroen Roovers
Josh Brobst <josh@brob.st>
Leonard Marschke <contact@marschke.me>
Linus Lüssing <linus.luessing@c0d3.blue>

** Troubleshooting/Debugging **

Spotting bugs in networking tools can be tricky, since at times they only show
Expand Down
19 changes: 11 additions & 8 deletions README.TXT
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
*******************************************************************************
* SI6 Networks IPv6 IPv6 Toolkit (current) *
* SI6 Networks IPv6 IPv6 Toolkit v2.2 *
*******************************************************************************

Description of each of the files and directories:
-------------------------------------------------

.github Contains the GitHub Actions
data: Contains the configuration files and miscellaneous databases.
manuals: Contains the manual pages for the security assessment tools.
tests: Contains the unit tests.
tools: Contains the source code for the security assessment tools.
CHANGES.TXT: Contains the changelog of the toolkit
.github: GitHub Actions
data: Configuration files and miscellaneous databases.
manuals: Manual pages for the security assessment tools.
tests: Unit tests.
tools: Source code for the security assessment tools.

CHANGES.TXT: Contains the changelog of the toolkit.
CREDITS.TXT: Contains the credits of this project.
LICENSE.TXT: Contains the license for this software (GPLv3)
GNUMakefile: Makefile for gmake.
LICENSE.TXT: Contains the license for this software (GPLv3).
Makefile: Makegile for make.
README.TXT: This file.


Expand Down
2 changes: 1 addition & 1 deletion tools/blackhole6
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use Socket();
use constant EXIT_SUCCESS => 0;
use constant EXIT_FAILURE => 1;

$SI6TOOLKIT="SI6 Networks IPv6 Toolkit (current)";
$SI6TOOLKIT="SI6 Networks IPv6 Toolkit 2.2";

$total=0;
$response=0;
Expand Down
2 changes: 1 addition & 1 deletion tools/ipv6toolkit.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#define SI6_TOOLKIT "SI6 Networks' IPv6 Toolkit (current)"
#define SI6_TOOLKIT "SI6 Networks' IPv6 Toolkit 2.2"
#define MAX_CMDLINE_OPT_LEN 40
#define DATE_STR_LEN 40
2 changes: 1 addition & 1 deletion tools/script6
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#
# Please send any bug reports to Fernando Gont <fgont@si6networks.com>

$SI6_TOOLKIT="SI6 Networks IPv6 Toolkit (current)";
$SI6_TOOLKIT="SI6 Networks IPv6 Toolkit 2.2";
$SCRIPT6="script6: A tool to make complex IPv6 tasks easy";
$USAGE="\
Usage: script6 COMMAND [PARAMETERS]
Expand Down
Loading