Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Created by
brew bump
Created with
brew bump-formula-pr
.release notes
arm64-v8a
,armeabi-v7a
,x86
,x86_64
What's changed (changes from v24.09)
Common++
andPacket++
libraries withoutPcap++
, removing the dependency on third-party libraries like libpcap or WinPcap/Npcap (thanks @Dimi1010 !)pcapplusplus/
as the include prefix (thanks @clementperon !)ruff
(thanks @tigercosmos !)LightPcapNg
CMakeLists
files usinggersemi
(thanks @egecetin !)PcapLiveDevice
to store IP information asIPAddress
(thanks @Dimi1010!)PcapLiveDeviceList
,DpdkDeviceList
, etc.) to use smart pointers internally for memory management and consolidated common behavior under a base class (thanks @Dimi1010 !)MacAddress
,IPAddress
andIPNetwork
classes (thanks @Dimi1010 !)PfRingDevice
(thanks @Dimi1010 !)Breaking changes
Logger::LogLevel
has been deprecated and moved toLogLevel
.LogLevel
is now anenum class
, so arithmetic operations on it will fail to compileLogger
copy constructor and copy assignment operator are marked as deletedPacket::getRawPacketReadOnly()
has been changed fromRawPacket*
toRawPacket const*
LightPcapNg
is no longer included in the repository and is instead fetched at CMake configuration timeDeprecation list
PcapLiveDevice::getAddresses()
, which was previously deprecated, has now been removedPCAPPP_ENABLE_PCAP_IMMEDIATE_MODE
andPCAPPP_ENABLE_PCAP_SET_DIRECTION
Logger::Error
,Logger::Info
, andLogger::Debug
are deprecated. Please useLogLevel::XXX
insteadPcapLiveDeviceList::getPcapLiveDeviceBy***
methods have been deprecated in favor ofPcapLiveDeviceList::getDeviceBy***
ArpLayer(ArpOpcode opCode, const MacAddress &senderMacAddr, const MacAddress &targetMacAddr, const IPv4Address &senderIpAddr, const IPv4Address &targetIpAddr)
constructor has been deprecated in favor of more explicit overloadsCollaborators
Full Changelog: seladb/PcapPlusPlus@v24.09...v25.05