Skip to content

Commit 40f2088

Browse files
committed
Merge branch 'develop'
2 parents 19eed89 + b9b7843 commit 40f2088

File tree

9 files changed

+23
-10
lines changed

9 files changed

+23
-10
lines changed

.github/workflows/pkg-build.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
- amd64
1818
target:
1919
- "debian:bookworm"
20-
- "debian:buster"
2120
- "debian:bullseye"
2221
- "ubuntu:noble"
2322
- "ubuntu:focal"
@@ -53,7 +52,6 @@ jobs:
5352
arch:
5453
- amd64
5554
target:
56-
- "debian:buster"
5755
- "debian:bullseye"
5856
- "ubuntu:focal"
5957
- "ubuntu:jammy"
@@ -95,7 +93,6 @@ jobs:
9593
arch:
9694
- amd64
9795
target:
98-
- "debian:buster"
9996
- "debian:bullseye"
10097
- "debian:bookworm"
10198
- "ubuntu:focal"

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
libtrace 4.0.27
1+
libtrace 4.0.28
22

33
Code and documentation added since version 4.0.20 is
44
Copyright (c) 2023-2025 Shane Alcock and has been contributed as per

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Now you only need to update the version number in two places - below,
44
# and in the README
55

6-
AC_INIT([libtrace],[4.0.27],[[email protected]],[libtrace])
6+
AC_INIT([libtrace],[4.0.28],[[email protected]],[libtrace])
77

88
LIBTRACE_MAJOR=4
99
LIBTRACE_MID=0

debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
libtrace4 (4.0.28-1) unstable; urgency=medium
2+
3+
* libpacketdump: add decoding support for ETSI CC payloads that
4+
contain TCP, UDP, or RTP payloads.
5+
6+
-- Shane Alcock <[email protected]> Mon, 17 Feb 2025 11:53:49 +1300
7+
18
libtrace4 (4.0.27-1) unstable; urgency=medium
29

310
* Added new API methods: trace_get_uri_format() and trace_get_uri_body().

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Maintainer: Shane Alcock <[email protected]>
44
Build-Depends: debhelper-compat (= 12), dh-autoreconf,
55
libpcap-dev, zlib1g-dev, flex, bison, doxygen, liblzma-dev, graphviz,
66
libncurses5-dev, libbz2-dev, libssl-dev, libwandio1-dev (>= 4.0.0),
7-
libwandder2-dev (>= 2.0.6), dpdk-dev, libnuma-dev, libyaml-dev,
7+
libwandder2-dev (>= 2.0.14), dpdk-dev, libnuma-dev, libyaml-dev,
88
gcc-multilib
99
Standards-Version: 4.1.3
1010
Section: libs

libpacketdump/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ AM_CPPFLAGS= @ADD_INCLS@ -I../lib
198198
# a shared library.
199199
libpacketdump_la_LIBADD = @LIBPKTDUMP_LIBS@
200200
libpacketdump_la_LDFLAGS=\
201-
-version-info 5:8:0 \
201+
-version-info 5:9:0 \
202202
@ADD_LDFLAGS@
203203

204204
AM_CXXFLAGS=-g -Wall -DDIRNAME=\"$(plugindir)\" $(AM_CPPFLAGS)

libpacketdump/link_22.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ DLLEXPORT void decode(int link_type UNUSED, const char *packet, unsigned len)
4848
: TRACE_ETHERTYPE_IPV6);
4949
} else if (ccformat == WANDDER_ETSILI_CC_FORMAT_APPLICATION) {
5050
decode_next((const char *)cchdr, rem, "tcp", 0);
51+
} else if (ccformat == WANDDER_ETSILI_CC_FORMAT_TCP) {
52+
decode_next((const char *)cchdr, rem, "ip", 6);
53+
} else if (ccformat == WANDDER_ETSILI_CC_FORMAT_UDP) {
54+
decode_next((const char *)cchdr, rem, "ip", 17);
55+
} else if (ccformat == WANDDER_ETSILI_CC_FORMAT_RTP) {
56+
decode_next((const char *)cchdr, rem, "udp", 0);
5157
}
5258

5359
wandder_free_etsili_decoder(dec);

libwandder

rpm/libtrace4.spec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: libtrace4
2-
Version: 4.0.27
2+
Version: 4.0.28
33
Release: 1%{?dist}
44
Summary: C Library for capturing and analysing network packets
55

@@ -18,7 +18,7 @@ BuildRequires: numactl-devel
1818
BuildRequires: ncurses-devel
1919
BuildRequires: openssl-devel
2020
BuildRequires: libyaml-devel
21-
BuildRequires: libwandder2-devel >= 2.0.6
21+
BuildRequires: libwandder2-devel >= 2.0.14
2222
BuildRequires: libwandio1-devel
2323
BuildRequires: dpdk-devel
2424
BuildRequires: (flex-devel or libfl-static)
@@ -127,6 +127,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
127127

128128

129129
%changelog
130+
* Mon Feb 17 2025 Shane Alcock <[email protected]> - 4.0.28-1
131+
- Updated for 4.0.28 release
132+
130133
* Tue Feb 4 2025 Shane Alcock <[email protected]> - 4.0.27-1
131134
- Updated for 4.0.27 release
132135

0 commit comments

Comments
 (0)