-
Notifications
You must be signed in to change notification settings - Fork 50
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
6 changed files
with
29 additions
and
8 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 |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
# Now you only need to update the version number in two places - below, | ||
# and in the README | ||
|
||
AC_INIT([libtrace],[4.0.22],[[email protected]],[libtrace]) | ||
AC_INIT([libtrace],[4.0.23],[[email protected]],[libtrace]) | ||
|
||
LIBTRACE_MAJOR=4 | ||
LIBTRACE_MID=0 | ||
LIBTRACE_MINOR=22 | ||
LIBTRACE_MINOR=23 | ||
|
||
# OpenSolaris hides libraries like libncurses in /usr/gnu/lib, which is not | ||
# searched by default - add it to LDFLAGS so we at least have a chance of | ||
|
@@ -102,8 +102,10 @@ ADD_LDFLAGS="$ADD_LDFLAGS -L\$(abs_top_srcdir)/lib" | |
LIBTRACE_LIBS="" | ||
TOOLS_LIBS="" | ||
|
||
CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wextra -DLT_BUILDING_DLL=1" | ||
CXXFLAGS="$CXXFLAGS -Wall -DLT_BUILDING_DLL=1" | ||
CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wextra -DLT_BUILDING_DLL=1" | ||
CXXFLAGS="$CXXFLAGS -Wall -DLT_BUILDING_DLL=1" | ||
#CFLAGS="$CFLAGS -fsanitize=address -Wall -Wmissing-prototypes -Wextra -DLT_BUILDING_DLL=1" | ||
#CXXFLAGS="$CXXFLAGS -fsanitize=address -Wall -DLT_BUILDING_DLL=1" | ||
|
||
AC_ARG_ENABLE(address-san, AS_HELP_STRING(--enable-address-san, Enable address and memory sanitisation), | ||
[ | ||
|
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,19 @@ | ||
libtrace4 (4.0.23-1) unstable; urgency=medium | ||
|
||
* Add new tool: traceucast, a TCP unicast variant of tracemcast. | ||
* Add new input format: ndagtcp, for receiving packets sent by | ||
traceucast. | ||
* libpacketdump: fix premature free when decoding IPMM IRIs | ||
received via an etsilive input. | ||
* tracemcast: fix bug where the sequence number was not being | ||
incremented for each sent datagram. | ||
* object cache data structure: fix potential segfault after | ||
resizing the cache. | ||
* pcapfile: fix issue where packets owned by "dead" pcapfile trace | ||
would have an invalid pcap version. | ||
|
||
-- Shane Alcock <[email protected]> Fri, 10 Nov 2023 09:40:41 +1300 | ||
|
||
libtrace4 (4.0.22-1) unstable; urgency=medium | ||
|
||
* Fix segmentation fault when closing an ndag input that had | ||
|
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
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: libtrace4 | ||
Version: 4.0.22 | ||
Version: 4.0.23 | ||
Release: 1%{?dist} | ||
Summary: C Library for capturing and analysing network packets | ||
|
||
|
@@ -127,6 +127,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' | |
|
||
|
||
%changelog | ||
* Fri Nov 10 2023 Shane Alcock <[email protected]> - 4.0.23-1 | ||
- Updated for 4.0.23 release | ||
|
||
* Wed Jun 14 2023 Shane Alcock <[email protected]> - 4.0.22-1 | ||
- Updated for 4.0.22 release | ||
|
||
|