-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
91 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
# along with PacketQ. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
AC_PREREQ(2.61) | ||
AC_INIT([packetq], [1.3.1], [[email protected]], [packetq], [https://github.com/DNS-OARC/packetq/issues]) | ||
AC_INIT([packetq], [1.4.0], [[email protected]], [packetq], [https://github.com/DNS-OARC/packetq/issues]) | ||
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) | ||
AC_CONFIG_SRCDIR([src/packetq.cpp]) | ||
AC_CONFIG_HEADER([src/config.h]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,36 @@ | ||
packetq (1.4.0-1~unstable+1) unstable; urgency=low | ||
|
||
* Release 1.4.0 | ||
|
||
This release adds new fields for IP version and EDNS0 Client Subnet along | ||
with documentation updates, new usage (`--help`) and a buffer overflow | ||
check. Rework of the way OPT records are parsed has been done to make it | ||
easier to add support for other EDNS options in the future. | ||
|
||
New fields: | ||
- `ip_version`: The IP version as an int (4/6) | ||
- `edns0_ecs`: A bool that is true if Client Subnet (RFC7871) was found | ||
- `edns0_ecs_family`: An int with the address family | ||
- `edns0_ecs_source`: An int with the source prefix length | ||
- `edns0_ecs_scope`: An int with the scope prefix length | ||
- `edns0_ecs_address`: A textual representation of the address | ||
|
||
Bugfix: | ||
- `get_ushort()` in DNS parsing was not checking length of buffer before | ||
accessing it. | ||
|
||
Commits: | ||
0e7c34a Rewrote usage, add option descriptions, tables and fields | ||
3943dda Update documentation and tests | ||
f4b9464 Add IP_Version | ||
0b309e6 ECS addresses and OPT RR parsing | ||
875fd60 Correct type in documentation also | ||
b5a91b7 Damn the common keyboard sequences... | ||
358b9af Buf overflow check, move OPT RR parsing, rework EDNS0 ECS | ||
d38fffc Add EDNS option codes and EDNS Client Subnet (ECS) support | ||
|
||
-- Jerry Lundström <[email protected]> Tue, 11 Jul 2017 09:22:37 +0200 | ||
|
||
packetq (1.3.1-1~unstable+1) unstable; urgency=low | ||
|
||
* Release 1.3.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Name: packetq | ||
Version: 1.3.1 | ||
Version: 1.4.0 | ||
Release: 1%{?dist} | ||
Summary: A tool that provides a basic SQL-frontend to PCAP-files | ||
Group: Productivity/Networking/DNS/Utilities | ||
|
@@ -54,6 +54,31 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Tue Jul 11 2017 Jerry Lundström <[email protected]> 1.4.0-1 | ||
- Release 1.4.0 | ||
* This release adds new fields for IP version and EDNS0 Client Subnet along | ||
with documentation updates, new usage (`--help`) and a buffer overflow | ||
check. Rework of the way OPT records are parsed has been done to make it | ||
easier to add support for other EDNS options in the future. | ||
* New fields: | ||
- `ip_version`: The IP version as an int (4/6) | ||
- `edns0_ecs`: A bool that is true if Client Subnet (RFC7871) was found | ||
- `edns0_ecs_family`: An int with the address family | ||
- `edns0_ecs_source`: An int with the source prefix length | ||
- `edns0_ecs_scope`: An int with the scope prefix length | ||
- `edns0_ecs_address`: A textual representation of the address | ||
* Bugfix: | ||
- `get_ushort()` in DNS parsing was not checking length of buffer before | ||
accessing it. | ||
* Commits: | ||
0e7c34a Rewrote usage, add option descriptions, tables and fields | ||
3943dda Update documentation and tests | ||
f4b9464 Add IP_Version | ||
0b309e6 ECS addresses and OPT RR parsing | ||
875fd60 Correct type in documentation also | ||
b5a91b7 Damn the common keyboard sequences... | ||
358b9af Buf overflow check, move OPT RR parsing, rework EDNS0 ECS | ||
d38fffc Add EDNS option codes and EDNS Client Subnet (ECS) support | ||
* Fri Jun 02 2017 Jerry Lundström <[email protected]> 1.3.1-1 | ||
- Release 1.3.1 | ||
* This release add packaging files for DEB and RPM distributions and | ||
|