Skip to content

Commit

Permalink
Release 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jelu committed Mar 2, 2017
1 parent c5b0f39 commit 81b8df6
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 2 deletions.
25 changes: 25 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
2017-03-02 Jerry Lundström

Release 2.5.0

Resolved memory leaks within the IP fragment reassembly code that was
reported by Klaus Darilion (NIC.AT) and added config option to control
some parts of the fragment handling.

Fixes:
- Add `pcap_layers_clear_fragments()` to remove old fragments after
`MAX_FRAG_IDLE` (60 seconds)
- Use correct alloc/free functions for dataset hash
- Fix spacing in dsc.conf(5) man-page

New config option:
- `drop_ip_fragments` will disable IP fragmentation reassembling and
drop any IP packet that is a fragment (even the first)

Commits:

eaee6c0 Drop IP fragments
3ebb687 Issue #146: Fix leak in fragment handling
9a5e377 Use correct alloc/free
35f663c Fix #107: add const

2017-01-27 Jerry Lundström

Release 2.4.0
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
# POSSIBILITY OF SUCH DAMAGE.

AC_PREREQ(2.61)
AC_INIT([DSC], [2.4.0], [[email protected]], [dsc], [https://github.com/DNS-OARC/dsc/issues])
AC_INIT([DSC], [2.5.0], [[email protected]], [dsc], [https://github.com/DNS-OARC/dsc/issues])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
AC_CONFIG_SRCDIR([src/md_array.c])
AC_CONFIG_HEADER([src/config.h])
Expand Down
27 changes: 27 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
dsc (2.5.0-1~unstable+1) unstable; urgency=low

* Release 2.5.0

Resolved memory leaks within the IP fragment reassembly code that was
reported by Klaus Darilion (NIC.AT) and added config option to control
some parts of the fragment handling.

Fixes:
- Add `pcap_layers_clear_fragments()` to remove old fragments after
`MAX_FRAG_IDLE` (60 seconds)
- Use correct alloc/free functions for dataset hash
- Fix spacing in dsc.conf(5) man-page

New config option:
- `drop_ip_fragments` will disable IP fragmentation reassembling and
drop any IP packet that is a fragment (even the first)

Commits:

eaee6c0 Drop IP fragments
3ebb687 Issue #146: Fix leak in fragment handling
9a5e377 Use correct alloc/free
35f663c Fix #107: add const

-- Jerry Lundström <[email protected]> Thu, 02 Mar 2017 08:19:59 +0100

dsc (2.4.0-1~unstable+1) unstable; urgency=low

* Release 2.4.0
Expand Down
20 changes: 19 additions & 1 deletion rpm/spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: dsc
Version: 2.4.0
Version: 2.5.0
Release: 1%{?dist}
Summary: DNS Statistics Collector

Expand Down Expand Up @@ -55,6 +55,24 @@ rm -rf $RPM_BUILD_ROOT


%changelog
* Thu Mar 02 2017 Jerry Lundström <[email protected]> 2.5.0-1
- Release 2.5.0
* Resolved memory leaks within the IP fragment reassembly code that was
reported by Klaus Darilion (NIC.AT) and added config option to control
some parts of the fragment handling.
* Fixes:
- Add `pcap_layers_clear_fragments()` to remove old fragments after
`MAX_FRAG_IDLE` (60 seconds)
- Use correct alloc/free functions for dataset hash
- Fix spacing in dsc.conf(5) man-page
* New config option:
- `drop_ip_fragments` will disable IP fragmentation reassembling and
drop any IP packet that is a fragment (even the first)
* Commits:
eaee6c0 Drop IP fragments
3ebb687 Issue #146: Fix leak in fragment handling
9a5e377 Use correct alloc/free
35f663c Fix #107: add const
* Mon Jan 27 2017 Jerry Lundström <[email protected]> 2.4.0-1
- Release 2.4.0
* Since there have been a few major issues with the threaded capturing code
Expand Down

0 comments on commit 81b8df6

Please sign in to comment.