-
-
Notifications
You must be signed in to change notification settings - Fork 59
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
71 additions
and
15 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 |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
# POSSIBILITY OF SUCH DAMAGE. | ||
|
||
AC_PREREQ(2.61) | ||
AC_INIT([dnscap], [1.4.0], [[email protected]], [dnscap], [https://github.com/DNS-OARC/dnscap/issues]) | ||
AC_INIT([dnscap], [1.4.1], [[email protected]], [dnscap], [https://github.com/DNS-OARC/dnscap/issues]) | ||
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) | ||
AC_CONFIG_SRCDIR([src/dnscap.c]) | ||
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,22 +1,44 @@ | ||
dnscap (1.4.1-1~unstable+1) unstable; urgency=low | ||
|
||
* Release 1.4.1 | ||
|
||
Fixed an issue that when compiled with libpcap that had a specific | ||
feature enabled it would result in a runtime error which could not be | ||
worked around. | ||
|
||
Also fixed various compatibility issues and updated dependency | ||
documentation for CentOS. | ||
|
||
Commits: | ||
|
||
785d4c4 Fix compiler warnings | ||
2d4df8d Fix #65: Update pcap-thread to v2.1.2 | ||
26d3fbc Fix #64: Add missing dependency | ||
55e6741 Update pcap-thread to v2.1.1, fix issue with libpcap timestamp | ||
type | ||
c6fdb7a Fix typo and remove unused variables | ||
|
||
-- Jerry Lundström <[email protected]> Wed, 29 Mar 2017 13:14:59 +0200 | ||
|
||
dnscap (1.4.0-1~unstable+1) unstable; urgency=low | ||
|
||
* Release 1.4.0 | ||
* Release 1.4.0 | ||
|
||
Until it can be confirmed that the threaded code works as well as the | ||
non-threaded code it has been made optional and requires a configuration | ||
option to enable it during compilation. | ||
Until it can be confirmed that the threaded code works as well as the | ||
non-threaded code it has been made optional and requires a configuration | ||
option to enable it during compilation. | ||
|
||
New extended option: | ||
- `-o pcap_buffer_size=<bytes>` can be used to increase the capture | ||
buffer within pcap-thread/libpcap, this can help mitigate dropped | ||
packets by the kernel during breaks (like when closing dump file). | ||
New extended option: | ||
- `-o pcap_buffer_size=<bytes>` can be used to increase the capture | ||
buffer within pcap-thread/libpcap, this can help mitigate dropped | ||
packets by the kernel during breaks (like when closing dump file). | ||
|
||
Commits: | ||
Commits: | ||
|
||
1c6fbb2 Update copyright year | ||
63ef665 Suppress OpenBSD warnings about symbols | ||
2c99946 pcap-thread v2.0.0, disable threads, errors handling | ||
4cade97 Fix #56: Update pcap-thread to v1.2.2 and add test | ||
1c6fbb2 Update copyright year | ||
63ef665 Suppress OpenBSD warnings about symbols | ||
2c99946 pcap-thread v2.0.0, disable threads, errors handling | ||
4cade97 Fix #56: Update pcap-thread to v1.2.2 and add test | ||
|
||
-- Jerry Lundström <[email protected]> Mon, 27 Feb 2017 17:00:38 +0100 | ||
|
||
|
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: dnscap | ||
Version: 1.4.0 | ||
Version: 1.4.1 | ||
Release: 1%{?dist} | ||
Summary: Network capture utility designed specifically for DNS traffic | ||
|
||
|
@@ -51,6 +51,20 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Wed Mar 29 2017 Jerry Lundström <[email protected]> 1.4.1-1 | ||
- Release 1.4.1 | ||
* Fixed an issue that when compiled with libpcap that had a specific | ||
feature enabled it would result in a runtime error which could not be | ||
worked around. | ||
* Also fixed various compatibility issues and updated dependency | ||
documentation for CentOS. | ||
* Commits: | ||
785d4c4 Fix compiler warnings | ||
2d4df8d Fix #65: Update pcap-thread to v2.1.2 | ||
26d3fbc Fix #64: Add missing dependency | ||
55e6741 Update pcap-thread to v2.1.1, fix issue with libpcap timestamp | ||
type | ||
c6fdb7a Fix typo and remove unused variables | ||
* Mon Feb 27 2017 Jerry Lundström <[email protected]> 1.4.0-1 | ||
- Release 1.4.0 | ||
* Until it can be confirmed that the threaded code works as well as the | ||
|