Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

pcapplusplus-devel-22.11-1.4 RPM for s390x

From OpenSuSE Ports Tumbleweed for s390x

Name: pcapplusplus-devel Distribution: openSUSE:Factory:zSystems
Version: 22.11 Vendor: openSUSE
Release: 1.4 Build date: Thu Jun 15 04:18:04 2023
Group: Development/Libraries/C and C++ Build host: s390zp21
Size: 23120718 Source RPM: pcapplusplus-22.11-1.4.src.rpm
Packager: https://bugs.opensuse.org
Url: https://pcapplusplus.github.io/
Summary: C++ network sniffing and packet parsing and crafting framework
PcapPlusPlus is a C++ network sniffing and packet parsing and
manipulation framework.

Provides

Requires

License

Unlicense

Changelog

* Mon Dec 05 2022 Dirk Müller <dmueller@suse.com>
  - update to 22.11:
    * PcapPlusPlus officially moved to C++11! (thanks @clementperon !)
    * Remove the pthreads dependency and replace it with C++11 std::thread
    * Stop supporting MinGW32 on Windows since it doesn't support std::thread.
      MinGW-w64 and Visual Studio support remains unchanged
    * New protocols:
    * Telnet (thanks @egecetin !)
    * FTP (thanks @egecetin !)
    * ICMPv6 (thanks @kolbex !)
    * NDP (thanks @kolbex !)
    * LLC (thanks @egecetin !)
    * STP (thanks @egecetin !)
    * SOME/IP (thanks @kolbex !)
    * Wake on LAN (WoL) (thanks @egecetin !)
    * DPDK 21.11 support
    * Better support for DPDK i40e NICs
    * DPDK set up - add an option to get RTE_SDK from the command line or from
      an environment variable
    * Handle unilateral RST in TCP reassembly (thanks @neilstephens !)
    * Retrieve live device IPv6 address if available (thanks @jafar75 !)
    * Add .zst file extension support for pcapng files compressed with Zstd
    * Auto pre-commit monthly update
    * Add memory sanitizer regressions check
    * Add CodeQL SAST and remove LGTM which is being deprecated
    * Support multiple packets in fuzzing tests (thanks @sashashura !)
    * Revamped README.md (thanks @egecetin !)
    * Tons of bug fixes and minor improvements
* Fri May 27 2022 Luigi Baldoni <aloisio@gmx.com>
  - Drop unused pcap++-dpdk.patch for the time being
* Sun May 22 2022 Luigi Baldoni <aloisio@gmx.com>
  - Update to version 22.05
    * NTP protocol support
    * Clone live devices and live devices list
    * Add support for reading SNOOP capture files
    * Add an option to supply additional arguments when calling
      initDpdk()
    * Detect DPDK installed via pkg-config during PcapPlusPlus
      configuration
    * Try modprobe if insmod fails in DPDK setup script
    * Support parsing of IPv6 over IPv4
    * TCP reassembly improvmements:
      + Update timestamp of last packet seen in connection info
      + Add the timestamp of the received packet in the message
      callback
      + Add config parameter to disable OOO buffer cleanup
    * Remove deprecated methods in IPv4Layer, IPv6Layer and
      IPcapDevice
    * Internal changes:
      + Use standard compiler macros to detect which platform
      PcapPlusPlus is running on
      + Add pre-commit hooks to detect spelling mistakes, trailing
      spaces, wrong end-of-file, and more
      + Run Black formatter on all Python files
    * Tons of bug fixes and minor improvements
  - Refreshed pcap++-dpdk.patch and pcap++-paths.patch
  - Disabled dpdk due to breaking changes
* Tue Nov 09 2021 Luigi Baldoni <aloisio@gmx.com>
  - Update to version 21.11
    * DPDK 20.11 support
    * Support uio_pci_generic and vfio-pci kernel modules in DPDK
      setup script
    * Add the stream operator << to IP address and MAC address
      classes
    * Add the stream operator << to Packet and Layer
    * Add DHCPv6 protocol support
    * Get the full timestamp resolution from a standard pcap file
    * Add a new Packet constructor that uses a pre-allocated buffer
    * Add src/dst IP address setters in IPv6 layer
    * Add musl support
    * Support loopback interface in PfRingDeviceList
    * Modernize PcapPlusPlus examples and tutorials
    * Add IPv6 support in DNS Spoofing example
    * Convert TLVRecord to a templated class that can represent
      records with any type and length size
    * Convert PPPoE tags to use the TLV infrastructure
    * Modernize PcapPlusPlus test infrastructure:
      + Simplify string and object asserts
      + Replace printf with std::cout
    * Refactor and modernize PcapPlusPlus logger
    * Implement VlanLayet::computeCalculateFields() to calculate
      the next EtherType
    * Parse the 802.1ad QinQ EtherType as VlanLayer
    * Replace c-style string copy (sprintf) with cpp-style string
      copy using sstreams
    * Tons of bug fixes
* Wed May 19 2021 Luigi Baldoni <aloisio@gmx.com>
  - Update to version 21.05
    * TLS fingerprinting based on JA3
      + Extract TLS fingerprints from TLS ClientHello and
      ServerHello packets
      + TLS fingerprinting example app
    * TLS 1.3 support
    * A brand new DPDK setup script written in Python that makes
      it easier to setup DPDK
    * Significant size reduction of PcapPlusPlus compiled libraries
    * Calculate a packet's network data size before sending a
      packet and make sure it doesn't exceed the MTU
    * UDP multicast support
      + Add isMulticast() property to IPAddress, IPv4Address,
      IPv6Address
      + PcapSplitter: take into consideration multicast packets
      when splitting by client/server IP/port
    * New protocol support:
      + SSH (parsing only)
      + IP Sec (AH + ESP, parsing only)
    * Existing protocol enhancement:
      + DNS over TCP
      + Parse 2 new TLS extensions: Supported Groups and EC Point
      Format
      + Added a new IPLayer interface to abstract IPv4Layer and
      IPv6Layer
      + Added convenient methods to fetch source and dest ports in
      TCP and UDP layers
      + GRE layer - add Transparent Ethernet Bridging support
    * Major header files cleanup: remove platform-specific
      includes, remove pcap.h from PcapPlusPlus includes, remove
      redundant header files, replace c-str arguments with C++
      std::string
    * New API method to search PcapLiveDevice by IP address or name
    * Parse packets with link type of LINKTYPE_IPV4 and
      LINKTYPE_IPV6
    * TCP reassembly
      + Add configurable out-of-order packets per flow limit
      + Expose missing bytes size on data loss
    * hash5Tuple improvements
    * Fix Makefile dependencies - detect when header files are
      changed
    * Recognize *.zstd file extension in
      IFileReaderDevice::getReader()
    * Moved a large portion of PcapPlusPlus CI to GitHub Actions
    * Tons of bug fixes
  - Refresh pcap++-paths.patch
* Wed Aug 26 2020 aloisio@gmx.com
  - Update to version 20.08
    * Major security and quality improvements:
      + PcapPlusPlus was added to Google OSS-Fuzz which uses the
      Fuzz testing technique to discover security
      vulnerabilities and stability bugs
      + Created a new regression test suite for OSS-Fuzz bugfixes
      under Tests/Fuzzers/RegressionTests
      + Added LGTM integration to enable continuous code analysis
      and prevent critical vulnerabilities
      + More than 60 issues were found by OSS-Fuzz and LGTM and
      fixed in this release
      + Revamped Packet++Test and Pcap++Test: tests are now more
      structured, divided into multiple files and use common and
      more intuitive test infrastructure
      + Added a new test suite (written in Python) for
      PcapPlusPlus examples under Tests/ExamplesTests
    * Added DPDK 19.11 (LTS) support
    * New supported protocols:
      + BGP v4
      + IEEE 802.3 Ethernet
    * A complete rewrite of the IP address classes IPv4Address,
      IPv6Address and IPAddress to make them more efficient and
      easy to use
    * In addition, new features were added to IP address classes:
      + Added "less than" comparison operator
      + Added subnet match for IPv6Address
    * Performance optimization, readability improvements and code
      cleanup in various parts of the code
    * Integrated streaming ZStd compression for pcapng files
    * Pcap/pcapng files:
      + Read and write in nanoseconds precision for pcapng files
      + Enable flush for pcap and pcapng file writers
    * TCP reassembly returns status in every call to
      TcpReassembly::reassemblePacket()
    * Added port filter to HttpAnalyzer
    * Support for setting snapshot length in PcapLiveDevice
    * GeneralFilter::matchPacketWithFilter() can now match packet
      of any link type
    * Added user link types 147-162 to support custom protocols
    * Tons of bug fixes
* Wed Dec 04 2019 Luigi Baldoni <aloisio@gmx.com>
  - Update to version 19.12
    * Added support for DPDK 19.08 (thanks @gx740 !)
    * Major improvements in TCP reassembly (thanks @gx740 !):
      + Reducing memory consumption by cleaning up old connections
      + A lot of performance and code optimizations
    * Added support for GTP v1 protocol
    * Added DPDK KNI support (thanks @echo-Mike !)
    * Added KniPong example to demo the new KNI API (thanks
      @echo-Mike !)
    * Lots of performance optimizations and code cleanups (special
      thanks to @gx740 !)
    * Major revamp of reading/writing pcapng files - use streaming
      instead of memory copies and added support for compression
      (thanks @Dysl3xik !)
    * Added support for pcap_setdirection in PcapLiveDevice
      (thanks @MrSiz !)
    * Performance optimization and fixes in IPReassembly (thanks
      @gx740, @silviucpp !)
    * Added a new BPFStringFilter pcap filter to handle raw BPF
      filter strings and deprecated the old
      IPcapDevice::matchPacketWithFilter() API (thanks @Dysl3xik !)
    * Let the user add custom LDFLAGS to the main Makefile (thanks
      @rom1sqr !)
    * Added data validations in IPv4Layer before parsing the next
      layers (thanks @gx740 !)
    * Created a new unit-test framework to make it easier to write
      unit-tests
    * Replaced old 3rd-party debug-new with new homegrown
      MemPlumber
    * Tons of bug fixes (special thanks to @gx740 , @echo-Mike ,
      @Dysl3xik !)
* Tue Apr 02 2019 Luigi Baldoni <aloisio@gmx.com>
  - Update to version 19.04
    * DPDK support enhancements
      + Added support for the newest DPDK releases: 18.05, 18.08,
      18.11, 19.02
      + Added a new DpdkBridge example which is a PcapPlusPlus
      implementation for DPDK's L2 forwarding example - Thanks
      @vicenterb !
      + Added a new tutorial for using PcapPlusPlus with DPDK
      which walks through building a simple version of DpdkBridge
    * Packet parsing and crafting enhancements
      + Added RADIUS layer
      + Revamped DNS record API and added support for DNS MX
      records
      + Revamped remove layer from packet - removing a layer is
      more intuitive now + added an option to detach a layer
      from a packet
      + Revamped TLV data handling - simplified the way IPv4
      options, TCP options, DHCP options, RADIUS attributes and
      IPv6 extensions with options are handled. API is now more
      intuitive and shares a common infrastructure
      + Fixed bugs in fetching VLAN properties in VlanLayer -
      thanks @Lapshin !
    * Added support for raw sockets on Linux and Windows
      (RawSocketDevice)
    * Added support for link-types other than Ethernet in
      PcapLiveDevice - thanks @axasoft !
    * Exposed start and end times in TCP reassembly - thanks
      @Lnk2past !
    * PcapSplitter
      + Added pcapng support
      + When splitting by connection, multiple flows with the same
      5-tuple are now separated to different files
    * Added filtering capabilities to PcapNgFileWriterDevice -
      thanks @vrobles-gee !
    * Added more accurate time measurement for packet capture in
      blocking mode
    * Added DeviceConfiguration to PcapLiveDevice to provide an
      interface to set WinPcap/libpcap packet buffer size and
      buffer timeout
    * Refactored the devices class hierarchy (the new root class
      is now IDevice)
    * Build system improvements to provide better support for
      package managers - thanks @solvingj !
    * Lots of bugfixes
  - Refreshed pcap++-dpdk.patch
* Thu Oct 18 2018 Luigi Baldoni <aloisio@gmx.com>
  - Update to version 18.08
    * Massive DPDK enhancements:
      + Major performance improvements
      + Fixed some mbuf leakages
      + DPDK 17.11 and 18.02 support (thanks @luigino !)
      + Re-designed some of DpdkDevice APIs to make them cleaner,
      faster and easier to use
      + Expose DPDK-specific stats
      + RSS (Receive Side Scaling) support
      + DPDK TX buffers support
      + Enable DPDK master core configuration
    * Added IP reassembly module (a.k.a IP de-fragmenetation).
      Supports both IPv4 and IPv6
    * Added IPv6 support for TCP reassembly
    * Install to custom directory on Linux and MacOS
    * Performance improvement in packet parsing
    * Fixed compatibility issues with C++17 (thanks @echo-Mike !)
    * Read multiple packets from pcap/pcapng files
    * Build system improvements (thanks @echo-Mike !)
    * New protocols:
      + Packet trailer (a.k.a footer or padding)
      + IPv6 extensions
    * New and updated utilities:
      + New IPFragUtil for splitting packets into IP fragments
      + New IPDefragUtil for reassembling IP fragments into packets
      + PcapSplitter now supports round-robin splitting
    * Many bugfixes
  - Refreshed pcap++-dpdk.patch and pcap++-paths.patch
* Sun Feb 18 2018 aloisio@gmx.com
  - Future-proofed pcap++-dpdk.patch

Files

/usr/include/pcapplusplus
/usr/include/pcapplusplus/ArpLayer.h
/usr/include/pcapplusplus/BgpLayer.h
/usr/include/pcapplusplus/Device.h
/usr/include/pcapplusplus/DhcpLayer.h
/usr/include/pcapplusplus/DhcpV6Layer.h
/usr/include/pcapplusplus/DnsLayer.h
/usr/include/pcapplusplus/DnsLayerEnums.h
/usr/include/pcapplusplus/DnsResource.h
/usr/include/pcapplusplus/DnsResourceData.h
/usr/include/pcapplusplus/DpdkDevice.h
/usr/include/pcapplusplus/DpdkDeviceList.h
/usr/include/pcapplusplus/EthDot3Layer.h
/usr/include/pcapplusplus/EthLayer.h
/usr/include/pcapplusplus/FtpLayer.h
/usr/include/pcapplusplus/GeneralUtils.h
/usr/include/pcapplusplus/GreLayer.h
/usr/include/pcapplusplus/GtpLayer.h
/usr/include/pcapplusplus/HttpLayer.h
/usr/include/pcapplusplus/IPLayer.h
/usr/include/pcapplusplus/IPReassembly.h
/usr/include/pcapplusplus/IPSecLayer.h
/usr/include/pcapplusplus/IPv4Layer.h
/usr/include/pcapplusplus/IPv6Extensions.h
/usr/include/pcapplusplus/IPv6Layer.h
/usr/include/pcapplusplus/IcmpLayer.h
/usr/include/pcapplusplus/IcmpV6Layer.h
/usr/include/pcapplusplus/IgmpLayer.h
/usr/include/pcapplusplus/IpAddress.h
/usr/include/pcapplusplus/IpUtils.h
/usr/include/pcapplusplus/KniDevice.h
/usr/include/pcapplusplus/KniDeviceList.h
/usr/include/pcapplusplus/LLCLayer.h
/usr/include/pcapplusplus/LRUList.h
/usr/include/pcapplusplus/Layer.h
/usr/include/pcapplusplus/LinuxNicInformationSocket.h
/usr/include/pcapplusplus/Logger.h
/usr/include/pcapplusplus/MBufRawPacket.h
/usr/include/pcapplusplus/MacAddress.h
/usr/include/pcapplusplus/MplsLayer.h
/usr/include/pcapplusplus/NdpLayer.h
/usr/include/pcapplusplus/NetworkUtils.h
/usr/include/pcapplusplus/NtpLayer.h
/usr/include/pcapplusplus/NullLoopbackLayer.h
/usr/include/pcapplusplus/PPPoELayer.h
/usr/include/pcapplusplus/Packet.h
/usr/include/pcapplusplus/PacketTrailerLayer.h
/usr/include/pcapplusplus/PacketUtils.h
/usr/include/pcapplusplus/PayloadLayer.h
/usr/include/pcapplusplus/PcapDevice.h
/usr/include/pcapplusplus/PcapFileDevice.h
/usr/include/pcapplusplus/PcapFilter.h
/usr/include/pcapplusplus/PcapLiveDevice.h
/usr/include/pcapplusplus/PcapLiveDeviceList.h
/usr/include/pcapplusplus/PcapPlusPlusVersion.h
/usr/include/pcapplusplus/PcapRemoteDevice.h
/usr/include/pcapplusplus/PcapRemoteDeviceList.h
/usr/include/pcapplusplus/PfRingDevice.h
/usr/include/pcapplusplus/PfRingDeviceList.h
/usr/include/pcapplusplus/PointerVector.h
/usr/include/pcapplusplus/ProtocolType.h
/usr/include/pcapplusplus/RadiusLayer.h
/usr/include/pcapplusplus/RawPacket.h
/usr/include/pcapplusplus/RawSocketDevice.h
/usr/include/pcapplusplus/SSHLayer.h
/usr/include/pcapplusplus/SSLCommon.h
/usr/include/pcapplusplus/SSLHandshake.h
/usr/include/pcapplusplus/SSLLayer.h
/usr/include/pcapplusplus/SdpLayer.h
/usr/include/pcapplusplus/SingleCommandTextProtocol.h
/usr/include/pcapplusplus/SipLayer.h
/usr/include/pcapplusplus/SllLayer.h
/usr/include/pcapplusplus/SomeIpLayer.h
/usr/include/pcapplusplus/SomeIpSdLayer.h
/usr/include/pcapplusplus/StpLayer.h
/usr/include/pcapplusplus/SystemUtils.h
/usr/include/pcapplusplus/TLVData.h
/usr/include/pcapplusplus/TablePrinter.h
/usr/include/pcapplusplus/TcpLayer.h
/usr/include/pcapplusplus/TcpReassembly.h
/usr/include/pcapplusplus/TelnetLayer.h
/usr/include/pcapplusplus/TextBasedProtocol.h
/usr/include/pcapplusplus/TimespecTimeval.h
/usr/include/pcapplusplus/UdpLayer.h
/usr/include/pcapplusplus/VlanLayer.h
/usr/include/pcapplusplus/VxlanLayer.h
/usr/include/pcapplusplus/WakeOnLanLayer.h
/usr/include/pcapplusplus/WinPcapLiveDevice.h
/usr/lib64/libCommon++.a
/usr/lib64/libPacket++.a
/usr/lib64/libPcap++.a
/usr/lib64/pkgconfig/PcapPlusPlus.pc
/usr/share/doc/packages/pcapplusplus-devel
/usr/share/doc/packages/pcapplusplus-devel/Examples
/usr/share/doc/packages/pcapplusplus-devel/Examples/ArpSpoofing
/usr/share/doc/packages/pcapplusplus-devel/Examples/ArpSpoofing/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/ArpSpoofing/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/ArpSpoofing/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/Arping
/usr/share/doc/packages/pcapplusplus-devel/Examples/Arping/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/Arping/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/Arping/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/DNSResolver
/usr/share/doc/packages/pcapplusplus-devel/Examples/DNSResolver/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/DNSResolver/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/DNSResolver/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/DnsSpoofing
/usr/share/doc/packages/pcapplusplus-devel/Examples/DnsSpoofing/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/DnsSpoofing/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/DnsSpoofing/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkBridge
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkBridge/AppWorkerThread.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkBridge/Common.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkBridge/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkBridge/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkBridge/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkExample-FilterTraffic
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkExample-FilterTraffic/AppWorkerThread.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkExample-FilterTraffic/Common.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkExample-FilterTraffic/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkExample-FilterTraffic/PacketMatchingEngine.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkExample-FilterTraffic/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/DpdkExample-FilterTraffic/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/HttpAnalyzer
/usr/share/doc/packages/pcapplusplus-devel/Examples/HttpAnalyzer/HttpStatsCollector.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/HttpAnalyzer/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/HttpAnalyzer/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/HttpAnalyzer/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/IPDefragUtil
/usr/share/doc/packages/pcapplusplus-devel/Examples/IPDefragUtil/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/IPDefragUtil/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/IPDefragUtil/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/IPFragUtil
/usr/share/doc/packages/pcapplusplus-devel/Examples/IPFragUtil/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/IPFragUtil/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/IPFragUtil/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/IcmpFileTransfer
/usr/share/doc/packages/pcapplusplus-devel/Examples/IcmpFileTransfer/Common.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/IcmpFileTransfer/Common.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/IcmpFileTransfer/IcmpFileTransfer-catcher.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/IcmpFileTransfer/IcmpFileTransfer-pitcher.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/IcmpFileTransfer/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/IcmpFileTransfer/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/KniPong
/usr/share/doc/packages/pcapplusplus-devel/Examples/KniPong/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/KniPong/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/KniPong/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapPlusPlus-benchmark
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapPlusPlus-benchmark/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapPlusPlus-benchmark/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapPlusPlus-benchmark/benchmark.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapPrinter
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapPrinter/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapPrinter/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapPrinter/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapSearch
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapSearch/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapSearch/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapSearch/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapSplitter
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapSplitter/ConnectionSplitters.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapSplitter/IPPortSplitters.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapSplitter/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapSplitter/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapSplitter/SimpleSplitters.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapSplitter/Splitters.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/PcapSplitter/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/PfRingExample-FilterTraffic
/usr/share/doc/packages/pcapplusplus-devel/Examples/PfRingExample-FilterTraffic/Common.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/PfRingExample-FilterTraffic/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/PfRingExample-FilterTraffic/PacketMatchingEngine.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/PfRingExample-FilterTraffic/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/PfRingExample-FilterTraffic/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/SSLAnalyzer
/usr/share/doc/packages/pcapplusplus-devel/Examples/SSLAnalyzer/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/SSLAnalyzer/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/SSLAnalyzer/SSLStatsCollector.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/SSLAnalyzer/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/TLSFingerprinting
/usr/share/doc/packages/pcapplusplus-devel/Examples/TLSFingerprinting/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/TLSFingerprinting/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/TLSFingerprinting/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/TcpReassembly
/usr/share/doc/packages/pcapplusplus-devel/Examples/TcpReassembly/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/TcpReassembly/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/TcpReassembly/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-DpdkL2Fwd
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-DpdkL2Fwd/Makefile
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-DpdkL2Fwd/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-DpdkL2Fwd/WorkerThread.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-DpdkL2Fwd/WorkerThread.h
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-DpdkL2Fwd/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-HelloWorld
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-HelloWorld/1_packet.pcap
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-HelloWorld/Makefile.non_windows
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-HelloWorld/Makefile.windows
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-HelloWorld/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-HelloWorld/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-LiveTraffic
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-LiveTraffic/Makefile.non_windows
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-LiveTraffic/Makefile.windows
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-LiveTraffic/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-LiveTraffic/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PacketCraftAndEdit
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PacketCraftAndEdit/1_http_packet.pcap
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PacketCraftAndEdit/Makefile.non_windows
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PacketCraftAndEdit/Makefile.windows
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PacketCraftAndEdit/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PacketCraftAndEdit/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PacketParsing
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PacketParsing/1_http_packet.pcap
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PacketParsing/Makefile.non_windows
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PacketParsing/Makefile.windows
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PacketParsing/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PacketParsing/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PcapFiles
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PcapFiles/Makefile.non_windows
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PcapFiles/Makefile.windows
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PcapFiles/README.md
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PcapFiles/input.pcap
/usr/share/doc/packages/pcapplusplus-devel/Examples/Tutorials/Tutorial-PcapFiles/main.cpp
/usr/share/doc/packages/pcapplusplus-devel/README.md
/usr/share/licenses/pcapplusplus-devel
/usr/share/licenses/pcapplusplus-devel/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 12:50:11 2024