Coverage Report

Created: 2025-10-10 06:28

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/PcapPlusPlus/Pcap++/src/PcapUtils.cpp
Line
Count
Source
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