-
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
16 changed files
with
1,767 additions
and
417 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
Oops, something went wrong.