Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2025-02-14 ipfixprobe-4.16.0
* Parser: Fix packet parsing issue when --with-pcap is enabled
* DPDK: Increase default mempool size from 4096 to 8192
* DPDK: Set RX queue size as (mempool size / 2)
* DPDK: Fix multiple DPDK telemetry files registration

2024-12-27 ipfixprobe-4.15.0
* dpdk: Add DPDK telemetry
* dpdk: add DPDK port telemetry
Expand Down
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2025-02-06 (Pavel Siska): Parser - Fix packet parsing issue when --with-pcap is enabled Ensure correct packet parsing for input modules like dpdk, dpdk-ring, and nfb when compiled with --with-pcap. Previously, the parser relied on opt->datalink, which these inputs do not set, leading to incorrect layer detection. Now, it correctly defaults to Ethernet when necessary.
2025-02-06 (Pavel Siska): Dpdk - increase default mempool size from 4096 to 8192
2025-02-06 (Pavel Siska): Dpdk - set RX queue size as (mempool size / 2)
2025-01-02 (Pavel Siska): dpdk: fix multiple dpdk telemetry files registration

2024-12-27 (Pavel Siska): dpdk: Add DPDK telemetry
2024-12-27 (Pavel Siska): dpdk: add DPDK port telemetry
2024-12-27 (Pavel Siska): dpdk: add compatible definition macro to dpdkCompact Add RTE_ETH_RSS_GENEVE macro
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([ipfixprobe], [4.15.0], [nemea@cesnet.cz])
AC_INIT([ipfixprobe], [4.16.0], [nemea@cesnet.cz])

AC_CONFIG_SRCDIR([main.cpp])
AC_CONFIG_HEADERS([config.h])
Expand Down
Loading