Coverage Report

Created: 2025-08-09 06:42

/src/PcapPlusPlus/Pcap++/src/PcapUtils.cpp
Line
Count
Source (jump to first uncovered line)
1
#include "PcapUtils.h"
2
3
#include "pcap.h"
4
5
namespace pcpp
6
{
7
  namespace internal
8
  {
9
    void PcapCloseDeleter::operator()(pcap_t* ptr) const noexcept
10
0
    {
11
0
      pcap_close(ptr);
12
0
    }
13
14
    void PcapFreeAllDevsDeleter::operator()(pcap_if_t* ptr) const noexcept
15
0
    {
16
0
      pcap_freealldevs(ptr);
17
0
    }
18
  }  // namespace internal
19
}  // namespace pcpp