PcapPlusPlus  24.09
PcapUtils.h
1 #pragma once
2 
3 // Forward declarations
4 struct pcap;
5 typedef pcap pcap_t;
6 struct pcap_if;
7 typedef pcap_if pcap_if_t;
8 
9 namespace pcpp
10 {
12 
13  namespace internal
14  {
19  struct PcapCloseDeleter
20  {
21  void operator()(pcap_t* ptr) const;
22  };
23 
28  struct PcapFreeAllDevsDeleter
29  {
30  void operator()(pcap_if_t* ptr) const;
31  };
32  } // namespace internal
33 
35 } // namespace pcpp
The main namespace for the PcapPlusPlus lib.