PcapPlusPlus  Next
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 
11 namespace pcpp
12 {
14 
15  namespace internal
16  {
19  struct PcapCloseDeleter
20  {
21  void operator()(pcap_t* ptr) const noexcept;
22  };
23 
26  struct PcapFreeAllDevsDeleter
27  {
28  void operator()(pcap_if_t* ptr) const noexcept;
29  };
30  } // namespace internal
31 
33 } // namespace pcpp
The main namespace for the PcapPlusPlus lib.